Uses of Interface
org.quartz.jobs.JobDetail
Packages that use JobDetail
Package
Description
-
Uses of JobDetail in org.quartz
Methods in org.quartz that return JobDetailModifier and TypeMethodDescriptionQuartzScheduler.getJobDetail
(String jobKey) Get the
for theJobDetail
Job
instance with the given name and group.Methods in org.quartz with parameters of type JobDetailModifier and TypeMethodDescriptionvoid
Add the givenJob
to the Scheduler - with no associatedTrigger
.void
QuartzScheduler.notifyJobStoreJobComplete
(OperableTrigger trigger, JobDetail detail, Trigger.CompletedExecutionInstruction instCode) void
QuartzScheduler.notifyJobStoreJobVetoed
(OperableTrigger trigger, JobDetail detail, Trigger.CompletedExecutionInstruction instCode) QuartzScheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) -
Uses of JobDetail in org.quartz.builders
Methods in org.quartz.builders that return JobDetail -
Uses of JobDetail in org.quartz.core
Methods in org.quartz.core that return JobDetailModifier and TypeMethodDescriptionJobExecutionContext.getJobDetail()
Get theJobDetail
associated with theJob
.JobExecutionContextImpl.getJobDetail()
Scheduler.getJobDetail
(String jobKey) Get the
for theJobDetail
Job
instance with the given key.TriggerFiredBundle.getJobDetail()
JobStore.retrieveJob
(String jobKey) RAMJobStore.retrieveJob
(String jobKey) Methods in org.quartz.core with parameters of type JobDetailModifier and TypeMethodDescriptionvoid
Add the givenJob
to the Scheduler - with no associatedTrigger
.Scheduler.scheduleJob
(JobDetail jobDetail, OperableTrigger trigger) Add the given
to the Scheduler, and associate the givenJobDetail
with it.OperableTrigger
void
Store the given
.JobDetail
void
Store the given
.Job
void
JobStore.storeJobAndTrigger
(JobDetail newJob, OperableTrigger newTrigger) void
RAMJobStore.storeJobAndTrigger
(JobDetail newJob, OperableTrigger newTrigger) void
JobStore.triggeredJobComplete
(OperableTrigger trigger, JobDetail jobDetail, Trigger.CompletedExecutionInstruction triggerInstCode) Inform theJobStore
that the scheduler has completed the firing of the givenTrigger
(and the execution of its associatedJob
completed, threw an exception, or was vetoed), and that the
in the givenJobDataMap
JobDetail
should be updated if theJob
is stateful.void
RAMJobStore.triggeredJobComplete
(OperableTrigger trigger, JobDetail jobDetail, Trigger.CompletedExecutionInstruction triggerInstCode) Inform theJobStore
that the scheduler has completed the firing of the givenTrigger
(and the execution its associatedJob
), and that theJobDataMap
JobDetail
should be updated if theJob
is stateful.Constructors in org.quartz.core with parameters of type JobDetailModifierConstructorDescriptionTriggerFiredBundle
(JobDetail job, OperableTrigger trigger, Calendar cal, boolean jobIsRecovering, Date fireTime, Date scheduledFireTime, Date prevFireTime, Date nextFireTime) -
Uses of JobDetail in org.quartz.exceptions
Constructors in org.quartz.exceptions with parameters of type JobDetailModifierConstructorDescriptionObjectAlreadyExistsException
(JobDetail offendingJob) Create aObjectAlreadyExistsException
and auto-generate a message using the name/group from the givenJobDetail
. -
Uses of JobDetail in org.quartz.jobs
Classes in org.quartz.jobs that implement JobDetailModifier and TypeClassDescriptionclass
Conveys the detail properties of a givenJob
instance. -
Uses of JobDetail in org.quartz.listeners
Methods in org.quartz.listeners with parameters of type JobDetail