@@ -211,11 +211,11 @@ and persisted, as the following table shows:
211
211
successfully, it is `BatchStatus#COMPLETED`
212
212
213
213
|`startTime`
214
- |A `java.util.Date ` representing the current system time when the execution was started.
214
+ |A `java.time.LocalDateTime ` representing the current system time when the execution was started.
215
215
This field is empty if the job has yet to start.
216
216
217
217
|`endTime`
218
- |A `java.util.Date ` representing the current system time when the execution finished,
218
+ |A `java.time.LocalDateTime ` representing the current system time when the execution finished,
219
219
regardless of whether or not it was successful. The field is empty if the job has yet to
220
220
finish.
221
221
@@ -225,13 +225,13 @@ contains an exit code that is returned to the caller. See chapter 5 for more det
225
225
field is empty if the job has yet to finish.
226
226
227
227
|`createTime`
228
- |A `java.util.Date ` representing the current system time when the `JobExecution` was
228
+ |A `java.time.LocalDateTime ` representing the current system time when the `JobExecution` was
229
229
first persisted. The job may not have been started yet (and thus has no start time), but
230
230
it always has a `createTime`, which is required by the framework for managing job-level
231
231
`ExecutionContexts`.
232
232
233
233
|`lastUpdated`
234
- |A `java.util.Date ` representing the last time a `JobExecution` was persisted. This field
234
+ |A `java.time.LocalDateTime ` representing the last time a `JobExecution` was persisted. This field
235
235
is empty if the job has yet to start.
236
236
237
237
|`executionContext`
@@ -390,12 +390,12 @@ status is `BatchStatus.STARTED`. If it fails, the status is `BatchStatus.FAILED`
390
390
finishes successfully, the status is `BatchStatus.COMPLETED`.
391
391
392
392
|`startTime`
393
- |A `java.util.Date ` representing the current system time when the execution was started.
393
+ |A `java.time.LocalDateTime ` representing the current system time when the execution was started.
394
394
This field is empty if the step has yet to start.
395
395
396
396
|`endTime`
397
397
398
- |A `java.util.Date ` representing the current system time when the execution finished,
398
+ |A `java.time.LocalDateTime ` representing the current system time when the execution finished,
399
399
regardless of whether or not it was successful. This field is empty if the step has yet to
400
400
exit.
401
401
0 commit comments