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

@@ -3,6 +3,7 @@ package org.springframework.batch.integration;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobExecutionException;
import org.springframework.batch.core.JobParametersIncrementer;
public class JobSupport implements Job {
@@ -24,5 +25,10 @@ public class JobSupport implements Job {
// TODO Auto-generated method stub
return false;
}
public JobParametersIncrementer getJobParametersIncrementer() {
// TODO Auto-generated method stub
return null;
}
}