org.springframework.scheduling.quartz
Class SchedulerAccessorBean

java.lang.Object
  extended by org.springframework.scheduling.quartz.SchedulerAccessor
      extended by org.springframework.scheduling.quartz.SchedulerAccessorBean
All Implemented Interfaces:
BeanFactoryAware, InitializingBean, ResourceLoaderAware

public class SchedulerAccessorBean
extends SchedulerAccessor
implements BeanFactoryAware, InitializingBean

Spring bean-style class for accessing a Quartz Scheduler, i.e. for registering jobs, triggers and listeners on a given Scheduler instance.

Since:
2.5.6
Author:
Juergen Hoeller
See Also:
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  Scheduler findScheduler(String schedulerName)
           
 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(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

SchedulerAccessorBean

public SchedulerAccessorBean()
Method Detail

setSchedulerName

public 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.

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.


setScheduler

public void setScheduler(Scheduler scheduler)
Specify the Quartz Scheduler instance to operate on.


getScheduler

public Scheduler getScheduler()
Return the Quartz Scheduler instance that this accessor operates on.

Specified by:
getScheduler in class SchedulerAccessor

setBeanFactory

public void setBeanFactory(BeanFactory beanFactory)
Description copied from interface: BeanFactoryAware
Callback that supplies the owning factory to a bean instance.

Invoked after the population of normal bean properties but before an initialization callback such as InitializingBean.afterPropertiesSet() or a custom init-method.

Specified by:
setBeanFactory in interface BeanFactoryAware
Parameters:
beanFactory - owning BeanFactory (never null). The bean can immediately call methods on the factory.
See Also:
BeanInitializationException

afterPropertiesSet

public void afterPropertiesSet()
                        throws SchedulerException
Description copied from interface: InitializingBean
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).

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.

Specified by:
afterPropertiesSet in interface InitializingBean
Throws:
SchedulerException

findScheduler

protected Scheduler findScheduler(String schedulerName)
                           throws SchedulerException
Throws:
SchedulerException


Copyright © 2002-2008 The Spring Framework.