org.lexgrid.loader.listener
Class SetupListener
java.lang.Object
org.lexgrid.loader.logging.LoggingBean
org.lexgrid.loader.listener.SetupListener
- All Implemented Interfaces:
- org.springframework.batch.core.JobExecutionListener
public class SetupListener
- extends LoggingBean
- implements org.springframework.batch.core.JobExecutionListener
The listener interface for receiving setup events.
The class that is interested in processing a setup
event implements this interface, and the object created
with that class is registered with a component using the
component's addSetupListener method. When
the setup event occurs, that object's appropriate
method is invoked.
- See Also:
SetupEvent
Method Summary |
void |
afterJob(org.springframework.batch.core.JobExecution job)
|
void |
beforeJob(org.springframework.batch.core.JobExecution job)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SetupListener
public SetupListener()
afterJob
public void afterJob(org.springframework.batch.core.JobExecution job)
- Specified by:
afterJob
in interface org.springframework.batch.core.JobExecutionListener
beforeJob
public void beforeJob(org.springframework.batch.core.JobExecution job)
- Specified by:
beforeJob
in interface org.springframework.batch.core.JobExecutionListener