File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
spring-batch-core/src/main/java/org/springframework/batch/core Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 3838 * @author Michael Minella
3939 * @author Mahmoud Ben Hassine
4040 * @author Dimitrios Liapis
41+ * @author Taeik Lim
4142 *
4243 */
4344@ SuppressWarnings ("serial" )
@@ -117,6 +118,7 @@ public JobParameters getJobParameters() {
117118 return this .jobParameters ;
118119 }
119120
121+ @ Nullable
120122 public Date getEndTime () {
121123 return endTime ;
122124 }
@@ -129,6 +131,7 @@ public void setEndTime(Date endTime) {
129131 this .endTime = endTime ;
130132 }
131133
134+ @ Nullable
132135 public Date getStartTime () {
133136 return startTime ;
134137 }
@@ -284,6 +287,7 @@ void addStepExecution(StepExecution stepExecution) {
284287 *
285288 * @return Date representing the last time this JobExecution was updated.
286289 */
290+ @ Nullable
287291 public Date getLastUpdated () {
288292 return lastUpdated ;
289293 }
Original file line number Diff line number Diff line change @@ -462,6 +462,7 @@ public void setProcessSkipCount(long processSkipCount) {
462462 /**
463463 * @return the Date representing the last time this execution was persisted.
464464 */
465+ @ Nullable
465466 public Date getLastUpdated () {
466467 return lastUpdated ;
467468 }
You can’t perform that action at this time.
0 commit comments