Interface StepListener

All Known Implementing Classes:
AbstractStepListener

public interface StepListener
StepListener intercepts step execution.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    The afterStep method receives control after a step execution ends.
    void
    The beforeStep method receives control before a step execution begins.
  • Method Details

    • beforeStep

      void beforeStep() throws Exception
      The beforeStep method receives control before a step execution begins.
      Throws:
      Exception - throw if an error occurs.
    • afterStep

      void afterStep() throws Exception
      The afterStep method receives control after a step execution ends.
      Throws:
      Exception - throw if an error occurs.