We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a1184 commit 66289e6Copy full SHA for 66289e6
spring-batch-core/src/main/java/org/springframework/batch/core/StepExecution.java
@@ -24,6 +24,7 @@
24
import java.util.concurrent.CopyOnWriteArrayList;
25
26
import org.springframework.batch.item.ExecutionContext;
27
+import org.springframework.lang.Nullable;
28
import org.springframework.util.Assert;
29
30
/**
@@ -34,6 +35,7 @@
34
35
* @author Lucas Ward
36
* @author Dave Syer
37
* @author Mahmoud Ben Hassine
38
+ * @author Taeik Lim
39
*
40
*/
41
@SuppressWarnings("serial")
@@ -159,6 +161,7 @@ public void setCommitCount(long commitCount) {
159
161
160
162
* @return the time that this execution ended
163
164
+ @Nullable
165
public Date getEndTime() {
166
return endTime;
167
}
0 commit comments