BATCH-402: Removed startLimit from Job. Also removed executionCount from JobExecution.

This commit is contained in:
lucasward
2008-03-03 17:16:05 +00:00
parent 43de884f91
commit f5a85589c9
3 changed files with 0 additions and 21 deletions

View File

@@ -34,8 +34,6 @@ public interface Job {
List getSteps();
int getStartLimit();
boolean isRestartable();
/**

View File

@@ -44,8 +44,6 @@ public class JobInstance extends Entity {
private Job job;
private int jobExecutionCount;
private JobExecution lastExecution;
public JobInstance(Long id, JobParameters jobParameters, Job job) {
@@ -64,14 +62,6 @@ public class JobInstance extends Entity {
return lastExecution;
}
public int getJobExecutionCount() {
return jobExecutionCount;
}
public void setJobExecutionCount(int jobExecutionCount) {
this.jobExecutionCount = jobExecutionCount;
}
/**
* @return {@link JobParameters}
*/