org.springframework.scheduling.quartz
Interface JobDetailAwareTrigger

All Known Implementing Classes:
CronTriggerBean, SimpleTriggerBean

public interface JobDetailAwareTrigger

Interface to be implemented by Quartz Triggers that are aware of the JobDetail object that they are associated with.

SchedulerFactoryBean will auto-detect Triggers that implement this interface and register them for the respective JobDetail accordingly.

The alternative is to configure a Trigger for a Job name and group: This involves the need to register the JobDetail object separately with SchedulerFactoryBean.

Since:
18.02.2004
Author:
Juergen Hoeller
See Also:
SchedulerAccessor.setTriggers(Trigger[]), SchedulerAccessor.setJobDetails(JobDetail[]), org.quartz.Trigger#setJobName, org.quartz.Trigger#setJobGroup

Method Summary
 JobDetail getJobDetail()
          Return the JobDetail that this Trigger is associated with.
 

Method Detail

getJobDetail

JobDetail getJobDetail()
Return the JobDetail that this Trigger is associated with.

Returns:
the associated JobDetail, or null if none