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 booleancanEqual(Object other)booleanequals(Object o)LocalDateTimegetAvailableAt()The time at which the job finished.ErrorgetError()Information about an error that occurred during the job processing.StringgetId()Identifier for the job.LocalDateTimegetIssuedAt()The time at which the job started.StringgetStatus()Job Status.inthashCode()
-
-
-
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)
-
-