com.ibm.websphere.batch.listener
Interface JobListener
- public interface JobListener
Method Summary
Modifier and Type | Method and Description |
---|---|
|
afterJob()
Call by the Batch Execution Environment after job has finished
|
|
afterStep()
Call by the Batch Execution Environment after a step has finished its execution.
|
|
beforeJob()
Call by the Batch Execution Environment before job set up is called
|
|
beforeStep()
Call by the Batch Execution Environment before step setup is called
|
|
getProperties()
Returns the properties specified in the xJCL for the JobListener
|
|
setProperties(java.util.Properties properties)
Called by the Batch Execution Environment to make the properties specified in the xJCL available to the JobListener
|
Method Detail
beforeJob
- void beforeJob()
Call by the Batch Execution Environment before job set up is called
afterJob
- void afterJob()
Call by the Batch Execution Environment after job has finished
beforeStep
- void beforeStep()
Call by the Batch Execution Environment before step setup is called
afterStep
- void afterStep()
Call by the Batch Execution Environment after a step has finished its execution.
setProperties
- void setProperties(java.util.Properties properties)
Called by the Batch Execution Environment to make the properties specified in the xJCL available to the JobListener
Parameters:
properties
- - the properties specified in xJCL are available in this Properties object. getProperties
- java.util.Properties getProperties( )
Returns the properties specified in the xJCL for the JobListener
Returns: