Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add @Nullable where appropriate in JobExecution and StepExecution #4077

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -38,6 +38,7 @@
* @author Michael Minella
* @author Mahmoud Ben Hassine
* @author Dimitrios Liapis
* @author Taeik Lim
*
*/
@SuppressWarnings("serial")
Expand Down Expand Up @@ -139,6 +140,7 @@ public JobParameters getJobParameters() {
/**
* @return The current end time.
*/
@Nullable
public Date getEndTime() {
return endTime;
}
Expand All @@ -164,6 +166,7 @@ public void setEndTime(Date endTime) {
/**
* @return The current start time.
*/
@Nullable
public Date getStartTime() {
return startTime;
}
Expand Down Expand Up @@ -327,6 +330,7 @@ void addStepExecution(StepExecution stepExecution) {
*
* @return Date representing the last time this JobExecution was updated.
*/
@Nullable
public Date getLastUpdated() {
return lastUpdated;
}
Expand Down
Expand Up @@ -464,6 +464,7 @@ public void setProcessSkipCount(long processSkipCount) {
/**
* @return the Date representing the last time this execution was persisted.
*/
@Nullable
public Date getLastUpdated() {
return lastUpdated;
}
Expand Down