OPEN - issue BATCH-927: Add JobParametersIncrementer to job namespace element

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

Added support for JobParametersIncrementer to Job element.
This commit is contained in:
lucasward
2008-11-17 19:08:55 +00:00
parent 1cf7cdad54
commit 59494813c2
4 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package org.springframework.batch.core.configuration.xml;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersIncrementer;
public class TestIncrementer implements JobParametersIncrementer{
public JobParameters getNext(JobParameters parameters) {
// TODO Auto-generated method stub
return null;
}
}