RESOLVED - issue BATCH-419: JobListener and StepListener should pass in JobExecution/StepExecution in each method

http://jira.springframework.org/browse/BATCH-419

added JobExecution argument to JobListener#afterJob
This commit is contained in:
robokaso
2008-03-06 14:36:38 +00:00
parent e20a250e14
commit db4b121b22
6 changed files with 11 additions and 11 deletions

View File

@@ -36,5 +36,5 @@ public interface JobListener {
/**
* Callback after successful completion of a job.
*/
void afterJob();
void afterJob(JobExecution jobExecution);
}

View File

@@ -27,7 +27,7 @@ public class JobListenerSupport implements JobListener {
/* (non-Javadoc)
* @see org.springframework.batch.core.domain.JobListener#afterJob()
*/
public void afterJob() {
public void afterJob(JobExecution jobExecution) {
}
/* (non-Javadoc)