Interface IJobResult


  • public interface IJobResult
    This structure is a representation of a particular scheduled job run. Once a job run has completed, an new IJobResult will be generated and kept by the scheduler for later historical querying.
    Author:
    aphillip
    • 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