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 0b745e5Copy full SHA for 0b745e5
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
/**
@@ -159,6 +160,7 @@ public void setCommitCount(long commitCount) {
159
160
*
161
* @return the time that this execution ended
162
*/
163
+ @Nullable
164
public Date getEndTime() {
165
return endTime;
166
}
0 commit comments