RESOLVED - issue BATCH-344: A JobExecution does not need a start time until it actually starts

http://jira.springframework.org/browse/BATCH-344
This commit is contained in:
dsyer
2008-02-26 15:48:14 +00:00
parent 5c84a647de
commit 2338565010
14 changed files with 34 additions and 12 deletions

View File

@@ -37,7 +37,7 @@ public class JobExecution extends Entity {
private BatchStatus status = BatchStatus.STARTING;
private Date startTime = new Date(System.currentTimeMillis());
private Date startTime = null;
private Date endTime = null;