File tree 2 files changed +5
-0
lines changed
spring-batch-core/src/main/java/org/springframework/batch/core 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 38
38
* @author Michael Minella
39
39
* @author Mahmoud Ben Hassine
40
40
* @author Dimitrios Liapis
41
+ * @author Taeik Lim
41
42
*
42
43
*/
43
44
@ SuppressWarnings ("serial" )
@@ -117,6 +118,7 @@ public JobParameters getJobParameters() {
117
118
return this .jobParameters ;
118
119
}
119
120
121
+ @ Nullable
120
122
public Date getEndTime () {
121
123
return endTime ;
122
124
}
@@ -129,6 +131,7 @@ public void setEndTime(Date endTime) {
129
131
this .endTime = endTime ;
130
132
}
131
133
134
+ @ Nullable
132
135
public Date getStartTime () {
133
136
return startTime ;
134
137
}
@@ -284,6 +287,7 @@ void addStepExecution(StepExecution stepExecution) {
284
287
*
285
288
* @return Date representing the last time this JobExecution was updated.
286
289
*/
290
+ @ Nullable
287
291
public Date getLastUpdated () {
288
292
return lastUpdated ;
289
293
}
Original file line number Diff line number Diff line change @@ -462,6 +462,7 @@ public void setProcessSkipCount(long processSkipCount) {
462
462
/**
463
463
* @return the Date representing the last time this execution was persisted.
464
464
*/
465
+ @ Nullable
465
466
public Date getLastUpdated () {
466
467
return lastUpdated ;
467
468
}
You can’t perform that action at this time.
0 commit comments