Class JobRecord
- java.lang.Object
-
- org.apache.manifoldcf.crawler.interfaces.JobRecord
-
- Direct Known Subclasses:
JobDeleteRecord,JobNotifyRecord,JobSeedingRecord,JobStartRecord
public class JobRecord extends java.lang.ObjectThis class is a paper object which contains a job ID.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String_rcsidprotected java.lang.LongjobIDThe job id.protected booleanwasStartedWhether this job was started or not
-
Constructor Summary
Constructors Constructor Description JobRecord(java.lang.Long jobID)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.LonggetJobID()Get the job ID.voidnoteStarted()Note that the job was started.booleanwasStarted()Check whether job was started.
-
-
-
Field Detail
-
_rcsid
public static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
jobID
protected final java.lang.Long jobID
The job id.
-
wasStarted
protected boolean wasStarted
Whether this job was started or not
-
-