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:
@@ -36,5 +36,5 @@ public interface JobListener {
|
||||
/**
|
||||
* Callback after successful completion of a job.
|
||||
*/
|
||||
void afterJob();
|
||||
void afterJob(JobExecution jobExecution);
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user