public class Quartz2JobDetailsFactory extends AbstractJobDetailsFactory<org.quartz.Trigger>
JobDetails objects out of Quartz 2.x Triggers.| Modifier and Type | Method and Description |
|---|---|
protected JobRunnerKey |
getJobRunnerKey(org.quartz.Trigger trigger)
Provided by the scheduler implementation to extract the job's
JobRunnerKey from
the scheduler's internal representation of the job. |
protected Date |
getNextRunTime(org.quartz.Trigger trigger)
Provided by the scheduler implementation to extract the job's next scheduled run time from
the scheduler's internal representation of the job.
|
protected Schedule |
getSchedule(org.quartz.Trigger trigger)
Provided by the scheduler implementation to extract the job's
Schedule from
the scheduler's internal representation of the job. |
protected byte[] |
getSerializedParameters(org.quartz.Trigger trigger)
Provided by the scheduler implementation to extract the job's parameters map (in
serialized form) from the scheduler's internal representation of the job.
|
buildJobDetails@Nonnull protected JobRunnerKey getJobRunnerKey(org.quartz.Trigger trigger)
AbstractJobDetailsFactoryJobRunnerKey from
the scheduler's internal representation of the job.getJobRunnerKey in class AbstractJobDetailsFactory<org.quartz.Trigger>trigger - the scheduler's internal representation of the job@Nonnull protected Schedule getSchedule(org.quartz.Trigger trigger)
AbstractJobDetailsFactorySchedule from
the scheduler's internal representation of the job.getSchedule in class AbstractJobDetailsFactory<org.quartz.Trigger>trigger - the scheduler's internal representation of the jobSchedule@Nullable protected byte[] getSerializedParameters(org.quartz.Trigger trigger)
AbstractJobDetailsFactorygetSerializedParameters in class AbstractJobDetailsFactory<org.quartz.Trigger>trigger - the scheduler's internal representation of the jobnull,
in which case an empty map will be substituted@Nullable protected Date getNextRunTime(org.quartz.Trigger trigger)
AbstractJobDetailsFactorygetNextRunTime in class AbstractJobDetailsFactory<org.quartz.Trigger>trigger - the scheduler's internal representation of the jobnull if the job will not be run again or
if the scheduler does not provide information about future run timesCopyright © 2017 Atlassian. All rights reserved.