org.springframework.batch.core.listener
Class JobExecutionListenerSupport

java.lang.Object
  extended by org.springframework.batch.core.listener.JobExecutionListenerSupport
All Implemented Interfaces:
JobExecutionListener

public class JobExecutionListenerSupport
extends Object
implements JobExecutionListener

Author:
Dave Syer

Constructor Summary
JobExecutionListenerSupport()
           
 
Method Summary
 void afterJob(JobExecution jobExecution)
          Callback after completion of a job.
 void beforeJob(JobExecution jobExecution)
          Callback before a job executes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JobExecutionListenerSupport

public JobExecutionListenerSupport()
Method Detail

afterJob

public void afterJob(JobExecution jobExecution)
Description copied from interface: JobExecutionListener
Callback after completion of a job. Called after both both successful and failed executions. To perform logic on a particular status, use "if (jobExecution.getStatus() == BatchStatus.X)".

Specified by:
afterJob in interface JobExecutionListener
Parameters:
jobExecution - the current JobExecution

beforeJob

public void beforeJob(JobExecution jobExecution)
Description copied from interface: JobExecutionListener
Callback before a job executes.

Specified by:
beforeJob in interface JobExecutionListener
Parameters:
jobExecution - the current JobExecution


Copyright © 2013 SpringSource. All Rights Reserved.