Interface StepListener

  • All Known Implementing Classes:
    AbstractStepListener

    public interface StepListener
    StepListener intercepts step execution.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void afterStep()
      The afterStep method receives control after a step execution ends.
      void beforeStep()
      The beforeStep method receives control before a step execution begins.
    • Method Detail

      • 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.