|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.scheduling.quartz.SchedulerAccessor org.springframework.scheduling.quartz.SchedulerAccessorBean
public class SchedulerAccessorBean
Spring bean-style class for accessing a Quartz Scheduler, i.e. for registering jobs,
triggers and listeners on a given Scheduler
instance.
setScheduler(org.quartz.Scheduler)
,
setSchedulerName(java.lang.String)
Field Summary |
---|
Fields inherited from class org.springframework.scheduling.quartz.SchedulerAccessor |
---|
logger, resourceLoader |
Constructor Summary | |
---|---|
SchedulerAccessorBean()
|
Method Summary | |
---|---|
void |
afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware). |
protected org.quartz.Scheduler |
findScheduler(String schedulerName)
|
org.quartz.Scheduler |
getScheduler()
Return the Quartz Scheduler instance that this accessor operates on. |
void |
setBeanFactory(BeanFactory beanFactory)
Callback that supplies the owning factory to a bean instance. |
void |
setScheduler(org.quartz.Scheduler scheduler)
Specify the Quartz Scheduler instance to operate on. |
void |
setSchedulerName(String schedulerName)
Specify the Quartz Scheduler to operate on via its scheduler name in the Spring application context or also in the Quartz SchedulerRepository . |
Methods inherited from class org.springframework.scheduling.quartz.SchedulerAccessor |
---|
registerJobsAndTriggers, registerListeners, setCalendars, setGlobalJobListeners, setGlobalTriggerListeners, setJobDetails, setJobListeners, setJobSchedulingDataLocation, setJobSchedulingDataLocations, setOverwriteExistingJobs, setResourceLoader, setSchedulerListeners, setTransactionManager, setTriggerListeners, setTriggers |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SchedulerAccessorBean()
Method Detail |
---|
public void setSchedulerName(String schedulerName)
SchedulerRepository
.
Schedulers can be registered in the repository through custom bootstrapping,
e.g. via the StdSchedulerFactory
or
DirectSchedulerFactory
factory classes.
However, in general, it's preferable to use Spring's SchedulerFactoryBean
which includes the job/trigger/listener capabilities of this accessor as well.
public void setScheduler(org.quartz.Scheduler scheduler)
public org.quartz.Scheduler getScheduler()
getScheduler
in class SchedulerAccessor
public void setBeanFactory(BeanFactory beanFactory)
BeanFactoryAware
Invoked after the population of normal bean properties
but before an initialization callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.
setBeanFactory
in interface BeanFactoryAware
beanFactory
- owning BeanFactory (never null
).
The bean can immediately call methods on the factory.BeanInitializationException
public void afterPropertiesSet() throws org.quartz.SchedulerException
InitializingBean
This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.
afterPropertiesSet
in interface InitializingBean
org.quartz.SchedulerException
protected org.quartz.Scheduler findScheduler(String schedulerName) throws org.quartz.SchedulerException
org.quartz.SchedulerException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |