in jobs-service/jobs-service-internal-api/src/main/java/org/kie/kogito/jobs/service/model/ScheduledJob.java [104:121]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof ScheduledJob)) {
return false;
}
if (!super.equals(o)) {
return false;
}
ScheduledJob that = (ScheduledJob) o;
return Objects.equals(getScheduledId(), that.getScheduledId()) &&
Objects.equals(getRetries(), that.getRetries()) &&
getStatus() == that.getStatus() &&
getLastUpdate().equals(that.getLastUpdate()) &&
Objects.equals(getExecutionCounter(), that.getExecutionCounter()) &&
Objects.equals(getExecutionResponse(), that.getExecutionResponse());
}