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 1
1
/*
2
- * Copyright 2006-2020 the original author or authors.
2
+ * Copyright 2006-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
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" )
@@ -131,6 +132,7 @@ public JobParameters getJobParameters() {
131
132
return this .jobParameters ;
132
133
}
133
134
135
+ @ Nullable
134
136
public Date getEndTime () {
135
137
return endTime ;
136
138
}
@@ -143,6 +145,7 @@ public void setEndTime(Date endTime) {
143
145
this .endTime = endTime ;
144
146
}
145
147
148
+ @ Nullable
146
149
public Date getStartTime () {
147
150
return startTime ;
148
151
}
@@ -318,6 +321,7 @@ void addStepExecution(StepExecution stepExecution) {
318
321
*
319
322
* @return Date representing the last time this JobExecution was updated.
320
323
*/
324
+ @ Nullable
321
325
public Date getLastUpdated () {
322
326
return lastUpdated ;
323
327
}
Original file line number Diff line number Diff line change @@ -461,6 +461,7 @@ public void setProcessSkipCount(int processSkipCount) {
461
461
/**
462
462
* @return the Date representing the last time this execution was persisted.
463
463
*/
464
+ @ Nullable
464
465
public Date getLastUpdated () {
465
466
return lastUpdated ;
466
467
}
You can’t perform that action at this time.
0 commit comments