OPEN - issue BATCH-773: Refactor and extend ExportedJobLauncher to JobOperator

Fill in a few methods in JobOperator (WIP)
This commit is contained in:
dsyer
2008-08-12 20:56:17 +00:00
parent 06b832c3ca
commit 55d59ff09e
13 changed files with 649 additions and 37 deletions

View File

@@ -21,6 +21,7 @@ import java.util.List;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParametersIncrementer;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.UnexpectedJobExecutionException;
import org.springframework.beans.factory.BeanNameAware;
@@ -131,6 +132,13 @@ public class JobSupport implements BeanNameAware, Job {
return restartable;
}
/* (non-Javadoc)
* @see org.springframework.batch.core.Job#getJobParametersIncrementer()
*/
public JobParametersIncrementer getJobParametersIncrementer() {
return null;
}
/* (non-Javadoc)
* @see org.springframework.batch.core.domain.Job#run(org.springframework.batch.core.domain.JobExecution)
*/