Package com.mindee.parsing.common
Class Job
- java.lang.Object
-
- com.mindee.parsing.common.Job
-
public class Job extends Object
Job Details for enqueued jobs.
-
-
Constructor Summary
Constructors Constructor Description Job()
Job(LocalDateTime availableAt, String id, LocalDateTime issuedAt, String status, Error error)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
LocalDateTime
getAvailableAt()
The time at which the job finished.Error
getError()
Information about an error that occurred during the job processing.String
getId()
Identifier for the job.LocalDateTime
getIssuedAt()
The time at which the job started.String
getStatus()
Job Status.int
hashCode()
-
-
-
Constructor Detail
-
Job
public Job(LocalDateTime availableAt, String id, LocalDateTime issuedAt, String status, Error error)
-
Job
public Job()
-
-
Method Detail
-
getAvailableAt
public LocalDateTime getAvailableAt()
The time at which the job finished.
-
getId
public String getId()
Identifier for the job.
-
getIssuedAt
public LocalDateTime getIssuedAt()
The time at which the job started.
-
getStatus
public String getStatus()
Job Status.
-
getError
public Error getError()
Information about an error that occurred during the job processing.
-
canEqual
protected boolean canEqual(Object other)
-
-