RESOLVED - BATCH-1016: Create listener to promote items from Step ExecutionContext to Job ExecutionContext

applied patch and added unit test in core
This commit is contained in:
robokaso
2009-01-26 11:11:59 +00:00
parent e53dcab046
commit d09691aad2
4 changed files with 123 additions and 2 deletions

View File

@@ -16,6 +16,6 @@ public class SkipCheckingListener implements StepExecutionListener {
}
public void beforeStep(StepExecution stepExecution) {
stepExecution.getJobExecution().getExecutionContext().put("stepName", stepExecution.getStepName());
stepExecution.getExecutionContext().put("stepName", stepExecution.getStepName());
}
}