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

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

added StepExecution argument to StepListener#afterStep
This commit is contained in:
robokaso
2008-03-06 14:25:09 +00:00
parent 97de346c69
commit e20a250e14
12 changed files with 24 additions and 24 deletions

View File

@@ -223,9 +223,9 @@ public class StagingItemReader extends JdbcDaoSupport implements ItemStream, Ite
}
/* (non-Javadoc)
* @see org.springframework.batch.core.domain.StepListener#afterStep()
* @see org.springframework.batch.core.domain.StepListener#afterStep(StepExecution)
*/
public ExitStatus afterStep() {
public ExitStatus afterStep(StepExecution stepExecution) {
return null;
}

View File

@@ -94,9 +94,9 @@ public class StagingItemWriter extends JdbcDaoSupport implements StepListener, I
}
/* (non-Javadoc)
* @see org.springframework.batch.core.domain.StepListener#afterStep()
* @see org.springframework.batch.core.domain.StepListener#afterStep(StepExecution)
*/
public ExitStatus afterStep() {
public ExitStatus afterStep(StepExecution stepExecution) {
return null;
}