com.ibm.websphere.batch.listener

Interface JobListener


  1. public interface JobListener

Method Summary

Modifier and Type Method and Description
  1. void
afterJob()
Call by the Batch Execution Environment after job has finished
  1. void
afterStep()
Call by the Batch Execution Environment after a step has finished its execution.
  1. void
beforeJob()
Call by the Batch Execution Environment before job set up is called
  1. void
beforeStep()
Call by the Batch Execution Environment before step setup is called
  1. java.util.Properties
getProperties()
Returns the properties specified in the xJCL for the JobListener
  1. void
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

  1. void beforeJob()
Call by the Batch Execution Environment before job set up is called

afterJob

  1. void afterJob()
Call by the Batch Execution Environment after job has finished

beforeStep

  1. void beforeStep()
Call by the Batch Execution Environment before step setup is called

afterStep

  1. void afterStep()
Call by the Batch Execution Environment after a step has finished its execution.

setProperties

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

  1. java.util.Properties getProperties( )
Returns the properties specified in the xJCL for the JobListener
Returns: