Class MyUniversalListener
- java.lang.Object
-
- com.ibm.jbatch.tck.artifacts.specialized.MyUniversalListener
-
- All Implemented Interfaces:
jakarta.batch.api.listener.JobListener
,jakarta.batch.api.listener.StepListener
@Named("myUniversalListener") public class MyUniversalListener extends Object implements jakarta.batch.api.listener.JobListener, jakarta.batch.api.listener.StepListener
-
-
Constructor Summary
Constructors Constructor Description MyUniversalListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterJob()
void
afterStep()
void
beforeJob()
void
beforeStep()
-
-
-
Method Detail
-
beforeJob
public void beforeJob()
- Specified by:
beforeJob
in interfacejakarta.batch.api.listener.JobListener
-
afterJob
public void afterJob()
- Specified by:
afterJob
in interfacejakarta.batch.api.listener.JobListener
-
beforeStep
public void beforeStep()
- Specified by:
beforeStep
in interfacejakarta.batch.api.listener.StepListener
-
afterStep
public void afterStep()
- Specified by:
afterStep
in interfacejakarta.batch.api.listener.StepListener
-
-