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:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user