-
- All Known Implementing Classes:
AbstractStepListener
public interface StepListenerStepListener intercepts step execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterStep()The afterStep method receives control after a step execution ends.voidbeforeStep()The beforeStep method receives control before a step execution begins.
-
-
-
Method Detail
-
beforeStep
void beforeStep() throws java.lang.ExceptionThe beforeStep method receives control before a step execution begins.- Throws:
java.lang.Exception- throw if an error occurs.
-
afterStep
void afterStep() throws java.lang.ExceptionThe afterStep method receives control after a step execution ends.- Throws:
java.lang.Exception- throw if an error occurs.
-
-