File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
spring-batch-core/src/main/java/org/springframework/batch/core Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2006-2020 the original author or authors.
2+ * Copyright 2006-2022 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
3838 * @author Michael Minella
3939 * @author Mahmoud Ben Hassine
4040 * @author Dimitrios Liapis
41+ * @author Taeik Lim
4142 *
4243 */
4344@ SuppressWarnings ("serial" )
@@ -131,6 +132,7 @@ public JobParameters getJobParameters() {
131132 return this .jobParameters ;
132133 }
133134
135+ @ Nullable
134136 public Date getEndTime () {
135137 return endTime ;
136138 }
@@ -143,6 +145,7 @@ public void setEndTime(Date endTime) {
143145 this .endTime = endTime ;
144146 }
145147
148+ @ Nullable
146149 public Date getStartTime () {
147150 return startTime ;
148151 }
@@ -318,6 +321,7 @@ void addStepExecution(StepExecution stepExecution) {
318321 *
319322 * @return Date representing the last time this JobExecution was updated.
320323 */
324+ @ Nullable
321325 public Date getLastUpdated () {
322326 return lastUpdated ;
323327 }
Original file line number Diff line number Diff line change @@ -461,6 +461,7 @@ public void setProcessSkipCount(int processSkipCount) {
461461 /**
462462 * @return the Date representing the last time this execution was persisted.
463463 */
464+ @ Nullable
464465 public Date getLastUpdated () {
465466 return lastUpdated ;
466467 }
You can’t perform that action at this time.
0 commit comments