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" )
@@ -139,6 +140,7 @@ public JobParameters getJobParameters() {
139
140
/**
140
141
* @return The current end time.
141
142
*/
143
+ @ Nullable
142
144
public Date getEndTime () {
143
145
return endTime ;
144
146
}
@@ -164,6 +166,7 @@ public void setEndTime(Date endTime) {
164
166
/**
165
167
* @return The current start time.
166
168
*/
169
+ @ Nullable
167
170
public Date getStartTime () {
168
171
return startTime ;
169
172
}
@@ -327,6 +330,7 @@ void addStepExecution(StepExecution stepExecution) {
327
330
*
328
331
* @return Date representing the last time this JobExecution was updated.
329
332
*/
333
+ @ Nullable
330
334
public Date getLastUpdated () {
331
335
return lastUpdated ;
332
336
}
Original file line number Diff line number Diff line change @@ -464,6 +464,7 @@ public void setProcessSkipCount(long processSkipCount) {
464
464
/**
465
465
* @return the Date representing the last time this execution was persisted.
466
466
*/
467
+ @ Nullable
467
468
public Date getLastUpdated () {
468
469
return lastUpdated ;
469
470
}
You can’t perform that action at this time.
0 commit comments