List of usage examples for org.springframework.scheduling.quartz SchedulerFactoryBean subclass-usage
From source file com.sshdemo.common.schedule.generate.quartz.EwcmsSchedulerFactoryBean.java
/** * @author wuzhijun */ public class EwcmsSchedulerFactoryBean extends SchedulerFactoryBean { private static final Logger logger = LoggerFactory.getLogger(EwcmsSchedulerFactoryBean.class);
From source file com.us.listener.ScheduleInitListener.java
/**
* Spring???
*
* @author <a href="mailto:monlyu.hong@gmail.com">monlyu</a>
* @version --0.0.0--, 2011-10-17
* @since JDK6.0
From source file com.gybas.evaluation.quartz.setup.WaitingSchedulerFactoryBean.java
/**
* Waits for all Quartz jobs to complete when {@link #stop()} is called and
* {@link #setWaitForJobsToCompleteOnShutdown(boolean)} is set to {@code true}. This avoids problems
* with Quartz jobs that access beans in Spring's application context. These beans might already be
* destroyed so the jobs fails.
*
From source file com.pavikumbhar.javaheart.quartz.jdbc.CleanableSchedulerFactoryBean.java
/** * * @author pavikumbhar */ public class CleanableSchedulerFactoryBean extends SchedulerFactoryBean { private boolean cleanupQuartzDbTables; //enables or disables automatic clean up on start up
From source file org.kuali.kra.s2s.polling.S2SSchedulerFactoryBean.java
/** * * This class is required in order to stop scheduling of tasks whose cron triggers are either invalid or are those that will not * fire ever again. */ public class S2SSchedulerFactoryBean extends SchedulerFactoryBean {
From source file ome.services.scheduler.SchedulerFactoryBean.java
/**
* Produces a <a href="http://www.opensymphony.com/quartz/Quartz</a>
* {@link Scheduler} which automatically loads all the triggers it can find.
*
* @author Josh Moore, josh at glencoesoftware.com
* @since 3.0-Beta3
From source file jp.classmethod.aws.brian.job.BrianSchedulerFactoryBean.java
/**
* {@link FactoryBean} for {@link Scheduler}.
*
* @since 1.0
* @author daisuke
*/
From source file org.trpr.platform.batch.impl.quartz.SchedulerFactoryBean.java
/**
* The <code>SchedulerFactoryBean</code> class is an extension of
* {@link org.springframework.scheduling.quartz.SchedulerFactoryBean } that injects extra information
* about trigger, such as cronexpression, next fire time, etc. into {@link ScheduleRepository}
*
* @author devashishshankar
From source file org.jasig.cas.util.AutowiringSchedulerFactoryBean.java
/**
* Extension of {@link SchedulerFactoryBean} that collects trigger bean
* definitions from the application context and calls
* {@link #setTriggers(org.quartz.Trigger[])} to autowire triggers at
* {@link #afterPropertiesSet()} time.
*
From source file org.kuali.coeus.propdev.impl.s2s.schedule.S2SSchedulerFactoryBean.java
/** * * This class is required in order to stop scheduling of tasks whose cron triggers are either invalid or are those that will not * fire ever again. */ public class S2SSchedulerFactoryBean extends SchedulerFactoryBean {