Interface IJobResult
-
public interface IJobResultThis structure is a representation of a particular scheduled job run. Once a job run has completed, an newIJobResultwill be generated and kept by the scheduler for later historical querying.- Author:
- aphillip
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCompletionDate()The end date/time of the job runStringgetId()The unique id of the job run.Map<String,Serializable>getJobParams()The job parameters used during this job run.DategetStartDate()The start date/time of the job run
-
-
-
Method Detail
-
getId
String getId()
The unique id of the job run.- Returns:
- a unique id of the job run
-
getJobParams
Map<String,Serializable> getJobParams()
The job parameters used during this job run.- Returns:
- set of parameters used during job run
-
getStartDate
Date getStartDate()
The start date/time of the job run- Returns:
- start date/time of the job run
-
getCompletionDate
Date getCompletionDate()
The end date/time of the job run- Returns:
- end date/time of the job run
-
-