File tree 2 files changed +6
-0
lines changed
spring-batch-core/src/main/java/org/springframework/batch/core 2 files changed +6
-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
* @return a {@code Date} object representing the last time this
328
331
* {@code 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 @@ -273,6 +273,7 @@ public void setCreateTime(Date createTime) {
273
273
*
274
274
* @return the time when this execution started.
275
275
*/
276
+ @ Nullable
276
277
public Date getStartTime () {
277
278
return startTime ;
278
279
}
@@ -485,6 +486,7 @@ public void setProcessSkipCount(long processSkipCount) {
485
486
/**
486
487
* @return the Date representing the last time this execution was persisted.
487
488
*/
489
+ @ Nullable
488
490
public Date getLastUpdated () {
489
491
return lastUpdated ;
490
492
}
You can’t perform that action at this time.
0 commit comments