Uses of Class
org.quartz.SchedulerException

Packages that use SchedulerException
org.quartz The main package of Quartz, containing the client-side interfaces. 
org.quartz.core Contains the core classes and interfaces for the Quartz job scheduler. 
org.quartz.core.jmx   
org.quartz.ee.jta   
org.quartz.impl Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.impl.jdbcjobstore   
org.quartz.jobs.ee.jms   
org.quartz.listeners   
org.quartz.plugins   
org.quartz.plugins.history   
org.quartz.plugins.management   
org.quartz.plugins.xml   
org.quartz.simpl Contains simple / light-weight implementations (with no dependencies on external libraries) of interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.spi Contains Service Provider Interfaces that can be implemented by those wishing to create and use custom versions of Quartz back-end/behind-the-scenes services. 
org.quartz.xml   
 

Uses of SchedulerException in org.quartz
 

Subclasses of SchedulerException in org.quartz
 class CriticalSchedulerException
           An exception that is thrown to indicate that there has been a critical failure within the scheduler's core services (such as loss of database connectivity).
 class JobExecutionException
           An exception that can be thrown by a Job to indicate to the Quartz Scheduler that an error occurred while executing, and whether or not the Job requests to be re-fired immediately (using the same JobExecutionContext, or whether it wants to be unscheduled.
 class JobPersistenceException
           An exception that is thrown to indicate that there has been a failure in the scheduler's underlying persistence mechanism.
 class ObjectAlreadyExistsException
           An exception that is thrown to indicate that an attempt to store a new object (i.e.
 class SchedulerConfigException
           An exception that is thrown to indicate that there is a misconfiguration of the SchedulerFactory- or one of the components it configures.
 class UnableToInterruptJobException
           An exception that is thrown to indicate that a call to InterruptableJob.interrupt() failed without interrupting the Job.
 

Methods in org.quartz with parameters of type SchedulerException
 void SchedulerListener.schedulerError(java.lang.String msg, SchedulerException cause)
           Called by the Scheduler when a serious error has occurred within the scheduler - such as repeated failures in the JobStore, or the inability to instantiate a Job instance when its Trigger has fired.
 

Methods in org.quartz that throw SchedulerException
 void Scheduler.addCalendar(java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers)
           Add (register) the given Calendar to the Scheduler.
 void Scheduler.addGlobalJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's global list.
 void Scheduler.addGlobalTriggerListener(TriggerListener triggerListener)
           Add the given TriggerListener to the Scheduler's global list.
 void Scheduler.addJob(JobDetail jobDetail, boolean replace)
           Add the given Job to the Scheduler - with no associated Trigger.
 void Scheduler.addJobListener(JobListener jobListener)
           Add the given JobListener to the Scheduler's list, of registered JobListeners.
 void Scheduler.addSchedulerListener(SchedulerListener schedulerListener)
           Register the given SchedulerListener with the Scheduler.
 void Scheduler.addTriggerListener(TriggerListener triggerListener)
           Add the given TriggerListener to the Scheduler's list, of registered TriggerListeners.
 boolean Scheduler.deleteCalendar(java.lang.String calName)
           Delete the identified Calendar from the Scheduler.
 boolean Scheduler.deleteJob(java.lang.String jobName, java.lang.String groupName)
           Delete the identified Job from the Scheduler - and any associated Triggers.
 java.util.Collection SchedulerFactory.getAllSchedulers()
           Returns handles to all known Schedulers (made by any SchedulerFactory within this jvm.).
 Calendar Scheduler.getCalendar(java.lang.String calName)
           Get the Calendar instance with the given name.
 java.lang.String[] Scheduler.getCalendarNames()
           Get the names of all registered Calendars.
 SchedulerContext Scheduler.getContext()
           Returns the SchedulerContext of the Scheduler.
 java.util.List Scheduler.getCurrentlyExecutingJobs()
           Return a list of JobExecutionContext objects that represent all currently executing Jobs in this Scheduler instance.
 JobListener Scheduler.getGlobalJobListener(java.lang.String name)
           Get the globalJobListener that has the given name.
 java.util.List Scheduler.getGlobalJobListeners()
           Get a List containing all of the JobListener s in the Scheduler'sglobal list.
 TriggerListener Scheduler.getGlobalTriggerListener(java.lang.String name)
           Get the globalTriggerListener that has the given name.
 java.util.List Scheduler.getGlobalTriggerListeners()
           Get a List containing all of the TriggerListener s in the Scheduler'sglobal list.
 JobDetail Scheduler.getJobDetail(java.lang.String jobName, java.lang.String jobGroup)
           Get the JobDetail for the Job instance with the given name and group.
 java.lang.String[] Scheduler.getJobGroupNames()
           Get the names of all known JobDetail groups.
 JobListener Scheduler.getJobListener(java.lang.String name)
           Get the non-globalJobListener that has the given name.
 java.util.Set Scheduler.getJobListenerNames()
           Get a Set containing the names of all the non-globalJobListener s registered with the Scheduler.
 java.lang.String[] Scheduler.getJobNames(java.lang.String groupName)
           Get the names of all the JobDetails in the given group.
 SchedulerMetaData Scheduler.getMetaData()
           Get a SchedulerMetaData object describing the settings and capabilities of the scheduler instance.
 java.util.Set Scheduler.getPausedTriggerGroups()
           Get the names of all Trigger groups that are paused.
 Scheduler SchedulerFactory.getScheduler()
           Returns a client-usable handle to a Scheduler.
 Scheduler SchedulerFactory.getScheduler(java.lang.String schedName)
           Returns a handle to the Scheduler with the given name, if it exists.
 java.lang.String Scheduler.getSchedulerInstanceId()
           Returns the instance Id of the Scheduler.
 java.util.List Scheduler.getSchedulerListeners()
           Get a List containing all of the SchedulerListener s registered with the Scheduler.
 java.lang.String Scheduler.getSchedulerName()
           Returns the name of the Scheduler.
 java.lang.String SchedulerMetaData.getSummary()
           Returns a formatted (human readable) String describing all the Scheduler's meta-data values.
 Trigger Scheduler.getTrigger(java.lang.String triggerName, java.lang.String triggerGroup)
           Get the Trigger instance with the given name and group.
 java.lang.String[] Scheduler.getTriggerGroupNames()
           Get the names of all known Trigger groups.
 TriggerListener Scheduler.getTriggerListener(java.lang.String name)
           Get the non-globalTriggerListener that has the given name.
 java.util.Set Scheduler.getTriggerListenerNames()
           Get a Set containing the names of all the non-globalTriggerListener s registered with the Scheduler.
 java.lang.String[] Scheduler.getTriggerNames(java.lang.String groupName)
           Get the names of all the Triggers in the given group.
 Trigger[] Scheduler.getTriggersOfJob(java.lang.String jobName, java.lang.String groupName)
           Get all Trigger s that are associated with the identified JobDetail.
 int Scheduler.getTriggerState(java.lang.String triggerName, java.lang.String triggerGroup)
           Get the current state of the identified Trigger.
 boolean Scheduler.isInStandbyMode()
           Reports whether the Scheduler is in stand-by mode.
 boolean Scheduler.isShutdown()
           Reports whether the Scheduler has been shutdown.
 boolean Scheduler.isStarted()
          Whether the scheduler has been started.
 void Scheduler.pauseAll()
           Pause all triggers - similar to calling pauseTriggerGroup(group) on every group, however, after using this method resumeAll() must be called to clear the scheduler's state of 'remembering' that all new triggers will be paused as they are added.
 void Scheduler.pauseJob(java.lang.String jobName, java.lang.String groupName)
           Pause the JobDetail with the given name - by pausing all of its current Triggers.
 void Scheduler.pauseJobGroup(java.lang.String groupName)
           Pause all of the JobDetails in the given group - by pausing all of their Triggers.
 void Scheduler.pauseTrigger(java.lang.String triggerName, java.lang.String groupName)
           Pause the Trigger with the given name.
 void Scheduler.pauseTriggerGroup(java.lang.String groupName)
           Pause all of the Triggers in the given group.
 boolean Scheduler.removeGlobalJobListener(java.lang.String name)
           Remove the identified JobListener from the Scheduler's list of global listeners.
 boolean Scheduler.removeGlobalTriggerListener(java.lang.String name)
           Remove the identified TriggerListener from the Scheduler's list of global listeners.
 boolean Scheduler.removeJobListener(java.lang.String name)
           Remove the identified JobListener from the Scheduler's list of registered listeners.
 boolean Scheduler.removeSchedulerListener(SchedulerListener schedulerListener)
           Remove the given SchedulerListener from the Scheduler.
 boolean Scheduler.removeTriggerListener(java.lang.String name)
           Remove the identified TriggerListener from the Scheduler's list of registered listeners.
 java.util.Date Scheduler.rescheduleJob(java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger)
           Remove (delete) the Trigger with the given name, and store the new given one - which must be associated with the same job (the new trigger must have the job name & group specified) - however, the new trigger need not have the same name as the old trigger.
 void Scheduler.resumeAll()
           Resume (un-pause) all triggers - similar to calling resumeTriggerGroup(group) on every group.
 void Scheduler.resumeJob(java.lang.String jobName, java.lang.String groupName)
           Resume (un-pause) the JobDetail with the given name.
 void Scheduler.resumeJobGroup(java.lang.String groupName)
           Resume (un-pause) all of the JobDetails in the given group.
 void Scheduler.resumeTrigger(java.lang.String triggerName, java.lang.String groupName)
           Resume (un-pause) the Trigger with the given name.
 void Scheduler.resumeTriggerGroup(java.lang.String groupName)
           Resume (un-pause) all of the Triggers in the given group.
 java.util.Date Scheduler.scheduleJob(JobDetail jobDetail, Trigger trigger)
           Add the given JobDetail to the Scheduler, and associate the given Trigger with it.
 java.util.Date Scheduler.scheduleJob(Trigger trigger)
           Schedule the given Trigger with the Job identified by the Trigger's settings.
 void Scheduler.setJobFactory(JobFactory factory)
           Set the JobFactory that will be responsible for producing instances of Job classes.
 void Scheduler.shutdown()
           Halts the Scheduler's firing of Triggers, and cleans up all resources associated with the Scheduler.
 void Scheduler.shutdown(boolean waitForJobsToComplete)
           Halts the Scheduler's firing of Triggers, and cleans up all resources associated with the Scheduler.
 void Scheduler.standby()
           Temporarily halts the Scheduler's firing of Triggers.
 void Scheduler.start()
           Starts the Scheduler's threads that fire Triggers.
 void Scheduler.startDelayed(int seconds)
           Calls {#start()} after the indicated number of seconds.
 void Scheduler.triggerJob(java.lang.String jobName, java.lang.String groupName)
           Trigger the identified JobDetail (execute it now) - the generated trigger will be non-volatile.
 void Scheduler.triggerJob(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Trigger the identified JobDetail (execute it now) - the generated trigger will be non-volatile.
 void Scheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName)
           Trigger the identified JobDetail (execute it now) - the generated trigger will be volatile.
 void Scheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Trigger the identified JobDetail (execute it now) - the generated trigger will be volatile.
 boolean Scheduler.unscheduleJob(java.lang.String triggerName, java.lang.String groupName)
           Remove the indicated Trigger from the scheduler.
 void Trigger.validate()
           Validates whether the properties of the JobDetail are valid for submission into a Scheduler.
 void SimpleTrigger.validate()
           Validates whether the properties of the JobDetail are valid for submission into a Scheduler.
 void JobDetail.validate()
           Validates whether the properties of the JobDetail are valid for submission into a Scheduler.
 void DateIntervalTrigger.validate()
           Validates whether the properties of the JobDetail are valid for submission into a Scheduler.
 

Uses of SchedulerException in org.quartz.core
 

Methods in org.quartz.core with parameters of type SchedulerException
 void QuartzScheduler.notifySchedulerListenersError(java.lang.String msg, SchedulerException se)
           
 void QuartzSchedulerMBeanImpl.schedulerError(java.lang.String msg, SchedulerException cause)
           
 

Methods in org.quartz.core that throw SchedulerException
 void RemotableQuartzScheduler.addCalendar(SchedulingContext ctxt, java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers)
           
 void QuartzScheduler.addCalendar(SchedulingContext ctxt, java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers)
           Add (register) the given Calendar to the Scheduler.
 void RemotableQuartzScheduler.addJob(SchedulingContext ctxt, JobDetail jobDetail, boolean replace)
           
 void QuartzScheduler.addJob(SchedulingContext ctxt, JobDetail jobDetail, boolean replace)
           Add the given Job to the Scheduler - with no associated Trigger.
 void QuartzSchedulerMBeanImpl.addJob(java.lang.String instanceId, javax.management.openmbean.CompositeData jobDetail, boolean replace)
           
protected  void JobRunShell.begin()
           
 JobRunShell JobRunShellFactory.borrowJobRunShell()
           Called by the QuartzSchedulerThread to obtain instances of JobRunShell.
protected  void JobRunShell.complete(boolean successfulExecution)
           
 boolean RemotableQuartzScheduler.deleteCalendar(SchedulingContext ctxt, java.lang.String calName)
           
 boolean QuartzScheduler.deleteCalendar(SchedulingContext ctxt, java.lang.String calName)
           Delete the identified Calendar from the Scheduler.
 void QuartzSchedulerMBeanImpl.deleteCalendar(java.lang.String instanceId, java.lang.String name)
           
 boolean RemotableQuartzScheduler.deleteJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           
 boolean QuartzScheduler.deleteJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           Delete the identified Job from the Scheduler - and any associated Triggers.
 boolean QuartzSchedulerMBeanImpl.deleteJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 javax.management.openmbean.TabularData QuartzSchedulerMBeanImpl.getAllJobDetails(java.lang.String instanceId)
           
 javax.management.openmbean.TabularData QuartzSchedulerMBeanImpl.getAllTriggers(java.lang.String instanceId)
           
 Calendar RemotableQuartzScheduler.getCalendar(SchedulingContext ctxt, java.lang.String calName)
           
 Calendar QuartzScheduler.getCalendar(SchedulingContext ctxt, java.lang.String calName)
           Get the Calendar instance with the given name.
 java.lang.String[] RemotableQuartzScheduler.getCalendarNames(SchedulingContext ctxt)
           
 java.lang.String[] QuartzScheduler.getCalendarNames(SchedulingContext ctxt)
           Get the names of all registered Calendars.
 java.lang.String[] QuartzSchedulerMBeanImpl.getCalendarNames(java.lang.String instanceId)
           
 java.util.List RemotableQuartzScheduler.getCurrentlyExecutingJobs()
           
 javax.management.openmbean.TabularData QuartzSchedulerMBeanImpl.getCurrentlyExecutingJobs()
           
 JobDetail RemotableQuartzScheduler.getJobDetail(SchedulingContext ctxt, java.lang.String jobName, java.lang.String jobGroup)
           
 JobDetail QuartzScheduler.getJobDetail(SchedulingContext ctxt, java.lang.String jobName, java.lang.String jobGroup)
           Get the JobDetail for the Job instance with the given name and group.
 javax.management.openmbean.CompositeData QuartzSchedulerMBeanImpl.getJobDetail(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 java.lang.String[] RemotableQuartzScheduler.getJobGroupNames(SchedulingContext ctxt)
           
 java.lang.String[] QuartzScheduler.getJobGroupNames(SchedulingContext ctxt)
           Get the names of all known Job groups.
 java.lang.String[] QuartzSchedulerMBeanImpl.getJobGroupNames(java.lang.String instanceId)
           
 java.lang.String[] RemotableQuartzScheduler.getJobNames(SchedulingContext ctxt, java.lang.String groupName)
           
 java.lang.String[] QuartzScheduler.getJobNames(SchedulingContext ctxt, java.lang.String groupName)
           Get the names of all the Jobs in the given group.
 java.lang.String[] QuartzSchedulerMBeanImpl.getJobNames(java.lang.String instanceId, java.lang.String groupName)
           
 java.util.Set RemotableQuartzScheduler.getPausedTriggerGroups(SchedulingContext ctxt)
           
 java.util.Set QuartzScheduler.getPausedTriggerGroups(SchedulingContext ctxt)
           
 java.util.Set<java.lang.String> QuartzSchedulerMBeanImpl.getPausedTriggerGroups(java.lang.String instanceId)
           
 SchedulerContext RemotableQuartzScheduler.getSchedulerContext()
           
 SchedulerContext QuartzScheduler.getSchedulerContext()
           Returns the SchedulerContext of the Scheduler.
 Trigger RemotableQuartzScheduler.getTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String triggerGroup)
           
 Trigger QuartzScheduler.getTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String triggerGroup)
           Get the Trigger instance with the given name and group.
 javax.management.openmbean.CompositeData QuartzSchedulerMBeanImpl.getTrigger(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 java.lang.String[] RemotableQuartzScheduler.getTriggerGroupNames(SchedulingContext ctxt)
           
 java.lang.String[] QuartzScheduler.getTriggerGroupNames(SchedulingContext ctxt)
           Get the names of all known Trigger groups.
 java.lang.String[] QuartzSchedulerMBeanImpl.getTriggerGroupNames(java.lang.String instanceId)
           
 java.lang.String[] RemotableQuartzScheduler.getTriggerNames(SchedulingContext ctxt, java.lang.String groupName)
           
 java.lang.String[] QuartzScheduler.getTriggerNames(SchedulingContext ctxt, java.lang.String groupName)
           Get the names of all the Triggers in the given group.
 java.lang.String[] QuartzSchedulerMBeanImpl.getTriggerNames(java.lang.String instanceId, java.lang.String triggerGroupName)
           
 Trigger[] RemotableQuartzScheduler.getTriggersOfJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           
 Trigger[] QuartzScheduler.getTriggersOfJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           Get all Trigger s that are associated with the identified JobDetail.
 javax.management.openmbean.TabularData QuartzSchedulerMBeanImpl.getTriggersOfJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 int RemotableQuartzScheduler.getTriggerState(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String triggerGroup)
           
 int QuartzScheduler.getTriggerState(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String triggerGroup)
           Get the current state of the identified Trigger.
 int QuartzSchedulerMBeanImpl.getTriggerState(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 void QuartzScheduler.initialize()
           
 void JobRunShell.initialize(QuartzScheduler qs, TriggerFiredBundle firedBundle)
           
 void QuartzScheduler.notifyJobListenersToBeExecuted(JobExecutionContext jec)
           
 void QuartzScheduler.notifyJobListenersWasExecuted(JobExecutionContext jec, JobExecutionException je)
           
 void QuartzScheduler.notifyJobListenersWasVetoed(JobExecutionContext jec)
           
 void QuartzScheduler.notifyTriggerListenersComplete(JobExecutionContext jec, int instCode)
           
 boolean QuartzScheduler.notifyTriggerListenersFired(JobExecutionContext jec)
           
 void QuartzScheduler.notifyTriggerListenersMisfired(Trigger trigger)
           
 void RemotableQuartzScheduler.pauseAll(SchedulingContext ctxt)
           
 void QuartzScheduler.pauseAll(SchedulingContext ctxt)
           Pause all triggers - equivalent of calling pauseTriggerGroup(group) on every group.
 void QuartzSchedulerMBeanImpl.pauseAllTriggers(java.lang.String instanceId)
           
 void RemotableQuartzScheduler.pauseJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           
 void QuartzScheduler.pauseJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           Pause the JobDetail with the given name - by pausing all of its current Triggers.
 void QuartzSchedulerMBeanImpl.pauseJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String groupName)
           
 void RemotableQuartzScheduler.pauseJobGroup(SchedulingContext ctxt, java.lang.String groupName)
           
 void QuartzScheduler.pauseJobGroup(SchedulingContext ctxt, java.lang.String groupName)
           Pause all of the JobDetails in the given group - by pausing all of their Triggers.
 void QuartzSchedulerMBeanImpl.pauseJobGroup(java.lang.String instanceId, java.lang.String jobGroupName)
           
 void RemotableQuartzScheduler.pauseTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName)
           
 void QuartzScheduler.pauseTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName)
           Pause the Trigger with the given name.
 void QuartzSchedulerMBeanImpl.pauseTrigger(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroup)
           
 void RemotableQuartzScheduler.pauseTriggerGroup(SchedulingContext ctxt, java.lang.String groupName)
           
 void QuartzScheduler.pauseTriggerGroup(SchedulingContext ctxt, java.lang.String groupName)
           Pause all of the Triggers in the given group.
 void QuartzSchedulerMBeanImpl.pauseTriggerGroup(java.lang.String instanceId, java.lang.String groupName)
           
 java.util.Date RemotableQuartzScheduler.rescheduleJob(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger)
           
 java.util.Date QuartzScheduler.rescheduleJob(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger)
           Remove (delete) the Trigger with the given name, and store the new given one - which must be associated with the same job.
 void RemotableQuartzScheduler.resumeAll(SchedulingContext ctxt)
           
 void QuartzScheduler.resumeAll(SchedulingContext ctxt)
           Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group) on every group.
 void QuartzSchedulerMBeanImpl.resumeAllTriggers(java.lang.String instanceId)
           
 void RemotableQuartzScheduler.resumeJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           
 void QuartzScheduler.resumeJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName)
           Resume (un-pause) the JobDetail with the given name.
 void QuartzSchedulerMBeanImpl.resumeJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 void RemotableQuartzScheduler.resumeJobGroup(SchedulingContext ctxt, java.lang.String groupName)
           
 void QuartzScheduler.resumeJobGroup(SchedulingContext ctxt, java.lang.String groupName)
           Resume (un-pause) all of the JobDetails in the given group.
 void QuartzSchedulerMBeanImpl.resumeJobGroup(java.lang.String instanceId, java.lang.String jobGroupName)
           
 void RemotableQuartzScheduler.resumeTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName)
           
 void QuartzScheduler.resumeTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName)
           Resume (un-pause) the Trigger with the given name.
 void QuartzSchedulerMBeanImpl.resumeTrigger(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 void RemotableQuartzScheduler.resumeTriggerGroup(SchedulingContext ctxt, java.lang.String groupName)
           
 void QuartzScheduler.resumeTriggerGroup(SchedulingContext ctxt, java.lang.String groupName)
           Resume (un-pause) all of the Triggers in the given group.
 void QuartzSchedulerMBeanImpl.resumeTriggerGroup(java.lang.String instanceId, java.lang.String groupName)
           
 java.util.Date RemotableQuartzScheduler.scheduleJob(SchedulingContext ctxt, JobDetail jobDetail, Trigger trigger)
           
 java.util.Date QuartzScheduler.scheduleJob(SchedulingContext ctxt, JobDetail jobDetail, Trigger trigger)
           Add the Job identified by the given JobDetail to the Scheduler, and associate the given Trigger with it.
 java.util.Date RemotableQuartzScheduler.scheduleJob(SchedulingContext ctxt, Trigger trigger)
           
 java.util.Date QuartzScheduler.scheduleJob(SchedulingContext ctxt, Trigger trigger)
           Schedule the given Trigger with the Job identified by the Trigger's settings.
 java.util.Date QuartzSchedulerMBeanImpl.scheduleJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroup, java.lang.String triggerName, java.lang.String triggerGroup)
           
 void QuartzScheduler.setJobFactory(JobFactory factory)
           
 void RemotableQuartzScheduler.start()
           
 void QuartzSchedulerMBeanImpl.start()
           
 void QuartzScheduler.start()
           Starts the QuartzScheduler's threads that fire Triggers.
 void RemotableQuartzScheduler.startDelayed(int seconds)
           
 void QuartzScheduler.startDelayed(int seconds)
           
 void RemotableQuartzScheduler.triggerJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           
 void QuartzScheduler.triggerJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Trigger the identified Job (execute it now) - with a non-volatile trigger.
 void QuartzSchedulerMBeanImpl.triggerJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName, java.util.Map<java.lang.String,java.lang.String> jobDataMap)
           
 void RemotableQuartzScheduler.triggerJobWithVolatileTrigger(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           
 void QuartzScheduler.triggerJobWithVolatileTrigger(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Trigger the identified Job (execute it now) - with a volatile trigger.
 void QuartzSchedulerMBeanImpl.triggerJobWithVolatileTrigger(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName, java.util.Map<java.lang.String,java.lang.String> jobDataMap)
           
 boolean RemotableQuartzScheduler.unscheduleJob(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName)
           
 boolean QuartzScheduler.unscheduleJob(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName)
           Remove the indicated Trigger from the scheduler.
 boolean QuartzSchedulerMBeanImpl.unscheduleJob(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroup)
           
 void QuartzScheduler.validateState()
           
 

Constructors in org.quartz.core that throw SchedulerException
QuartzScheduler(QuartzSchedulerResources resources, SchedulingContext ctxt, long idleWaitTime, long dbRetryInterval)
           Create a QuartzScheduler with the given configuration properties.
 

Uses of SchedulerException in org.quartz.core.jmx
 

Methods in org.quartz.core.jmx that throw SchedulerException
 void QuartzSchedulerMBean.addJob(java.lang.String instanceId, javax.management.openmbean.CompositeData jobDetail, boolean replace)
           
 void QuartzSchedulerMBean.deleteCalendar(java.lang.String instanceId, java.lang.String name)
           
 boolean QuartzSchedulerMBean.deleteJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 javax.management.openmbean.TabularData QuartzSchedulerMBean.getAllJobDetails(java.lang.String instanceId)
           
 javax.management.openmbean.TabularData QuartzSchedulerMBean.getAllTriggers(java.lang.String instanceId)
           
 java.lang.String[] QuartzSchedulerMBean.getCalendarNames(java.lang.String instanceId)
           
 javax.management.openmbean.TabularData QuartzSchedulerMBean.getCurrentlyExecutingJobs()
           
 javax.management.openmbean.CompositeData QuartzSchedulerMBean.getJobDetail(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 java.lang.String[] QuartzSchedulerMBean.getJobGroupNames(java.lang.String instanceId)
           
 java.lang.String[] QuartzSchedulerMBean.getJobNames(java.lang.String instanceId, java.lang.String groupName)
           
 java.util.Set<java.lang.String> QuartzSchedulerMBean.getPausedTriggerGroups(java.lang.String instanceId)
           
 javax.management.openmbean.CompositeData QuartzSchedulerMBean.getTrigger(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 java.lang.String[] QuartzSchedulerMBean.getTriggerGroupNames(java.lang.String instanceId)
           
 java.lang.String[] QuartzSchedulerMBean.getTriggerNames(java.lang.String instanceId, java.lang.String triggerGroupName)
           
 javax.management.openmbean.TabularData QuartzSchedulerMBean.getTriggersOfJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 int QuartzSchedulerMBean.getTriggerState(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 void QuartzSchedulerMBean.pauseAllTriggers(java.lang.String instanceId)
           
 void QuartzSchedulerMBean.pauseJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String groupName)
           
 void QuartzSchedulerMBean.pauseJobGroup(java.lang.String instanceId, java.lang.String jobGroupName)
           
 void QuartzSchedulerMBean.pauseTrigger(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 void QuartzSchedulerMBean.pauseTriggerGroup(java.lang.String instanceId, java.lang.String groupName)
           
 void QuartzSchedulerMBean.resumeAllTriggers(java.lang.String instanceId)
           
 void QuartzSchedulerMBean.resumeJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName)
           
 void QuartzSchedulerMBean.resumeJobGroup(java.lang.String instanceId, java.lang.String jobGroupName)
           
 void QuartzSchedulerMBean.resumeTrigger(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroupName)
           
 void QuartzSchedulerMBean.resumeTriggerGroup(java.lang.String instanceId, java.lang.String groupName)
           
 java.util.Date QuartzSchedulerMBean.scheduleJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroup, java.lang.String triggerName, java.lang.String triggerGroup)
           
 void QuartzSchedulerMBean.start()
           
static javax.management.openmbean.CompositeData JobExecutionContextSupport.toCompositeData(JobExecutionContext jec)
           
static javax.management.openmbean.TabularData JobExecutionContextSupport.toTabularData(java.util.List<JobExecutionContext> executingJobs)
           
 void QuartzSchedulerMBean.triggerJob(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName, java.util.Map<java.lang.String,java.lang.String> jobDataMap)
           
 void QuartzSchedulerMBean.triggerJobWithVolatileTrigger(java.lang.String instanceId, java.lang.String jobName, java.lang.String jobGroupName, java.util.Map<java.lang.String,java.lang.String> jobDataMap)
           
 boolean QuartzSchedulerMBean.unscheduleJob(java.lang.String instanceId, java.lang.String triggerName, java.lang.String triggerGroup)
           
 

Uses of SchedulerException in org.quartz.ee.jta
 

Methods in org.quartz.ee.jta that throw SchedulerException
protected  void JTAJobRunShell.begin()
           
protected  void JTAJobRunShell.complete(boolean successfulExecution)
           
static javax.transaction.UserTransaction UserTransactionHelper.lookupUserTransaction()
          Create/Lookup a UserTransaction in the InitialContext via the name set in setUserTxLocation().
 

Uses of SchedulerException in org.quartz.impl
 

Methods in org.quartz.impl that return SchedulerException
protected  SchedulerException RemoteScheduler.invalidateHandleCreateException(java.lang.String msg, java.lang.Exception cause)
           
 

Methods in org.quartz.impl with parameters of type SchedulerException
 void QuartzServer.schedulerError(java.lang.String msg, SchedulerException cause)
           Called by the Scheduler when a serious error has occured within the scheduler - such as repeated failures in the JobStore, or the inability to instantiate a Job instance when its Trigger has fired.
 

Methods in org.quartz.impl that throw SchedulerException
 void StdScheduler.addCalendar(java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.addCalendar(java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.addCalendar(java.lang.String calName, Calendar calendar, boolean replace, boolean updateTriggers)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.addGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addGlobalJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.addGlobalTriggerListener(TriggerListener triggerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addGlobalTriggerListener(TriggerListener triggerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.addJob(JobDetail jobDetail, boolean replace)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.addJob(JobDetail jobDetail, boolean replace)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.addJob(JobDetail jobDetail, boolean replace)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addJobListener(JobListener jobListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.addSchedulerListener(SchedulerListener schedulerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addSchedulerListener(SchedulerListener schedulerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.addTriggerListener(TriggerListener triggerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.addTriggerListener(TriggerListener triggerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void SchedulerRepository.bind(Scheduler sched)
           
 JobRunShell StdJobRunShellFactory.borrowJobRunShell()
           Called by the QuartzSchedulerThread to obtain instances of JobRunShell.
 void DirectSchedulerFactory.createRemoteScheduler(java.lang.String rmiHost, int rmiPort)
          Creates a proxy to a remote scheduler.
 void DirectSchedulerFactory.createRemoteScheduler(java.lang.String schedulerName, java.lang.String schedulerInstanceId, java.lang.String rmiHost, int rmiPort)
          Same as DirectSchedulerFactory.createRemoteScheduler(String rmiHost, int rmiPort), with the addition of specifying the scheduler name and instance ID.
 void DirectSchedulerFactory.createRemoteScheduler(java.lang.String schedulerName, java.lang.String schedulerInstanceId, java.lang.String rmiBindName, java.lang.String rmiHost, int rmiPort)
          Same as DirectSchedulerFactory.createRemoteScheduler(String rmiHost, int rmiPort), with the addition of specifying the scheduler name, instance ID, and rmi bind name.
 void DirectSchedulerFactory.createScheduler(java.lang.String schedulerName, java.lang.String schedulerInstanceId, ThreadPool threadPool, JobStore jobStore)
          Same as DirectSchedulerFactory.createScheduler(ThreadPool threadPool, JobStore jobStore), with the addition of specifying the scheduler name and instance ID.
 void DirectSchedulerFactory.createScheduler(java.lang.String schedulerName, java.lang.String schedulerInstanceId, ThreadPool threadPool, JobStore jobStore, java.util.Map schedulerPluginMap, java.lang.String rmiRegistryHost, int rmiRegistryPort, long idleWaitTime, long dbFailureRetryInterval, boolean jmxExport, java.lang.String jmxObjectName)
          Creates a scheduler using the specified thread pool, job store, and plugins, and binds it to RMI.
 void DirectSchedulerFactory.createScheduler(java.lang.String schedulerName, java.lang.String schedulerInstanceId, ThreadPool threadPool, JobStore jobStore, java.lang.String rmiRegistryHost, int rmiRegistryPort, long idleWaitTime, long dbFailureRetryInterval)
          Creates a scheduler using the specified thread pool and job store and binds it to RMI.
 void DirectSchedulerFactory.createScheduler(java.lang.String schedulerName, java.lang.String schedulerInstanceId, ThreadPool threadPool, ThreadExecutor threadExecutor, JobStore jobStore, java.util.Map schedulerPluginMap, java.lang.String rmiRegistryHost, int rmiRegistryPort, long idleWaitTime, long dbFailureRetryInterval, boolean jmxExport, java.lang.String jmxObjectName)
          Creates a scheduler using the specified thread pool, job store, and plugins, and binds it to RMI.
 void DirectSchedulerFactory.createScheduler(ThreadPool threadPool, JobStore jobStore)
          Creates a scheduler using the specified thread pool and job store.
 void DirectSchedulerFactory.createVolatileSchduler(int maxThreads)
          Deprecated. see correctly spelled method.
 void DirectSchedulerFactory.createVolatileScheduler(int maxThreads)
          Creates an in memory job store (RAMJobStore) The thread priority is set to Thread.NORM_PRIORITY
 boolean StdScheduler.deleteCalendar(java.lang.String calName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteScheduler.deleteCalendar(java.lang.String calName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteMBeanScheduler.deleteCalendar(java.lang.String calName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean StdScheduler.deleteJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteScheduler.deleteJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteMBeanScheduler.deleteJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Collection StdSchedulerFactory.getAllSchedulers()
           Returns a handle to all known Schedulers (made by any StdSchedulerFactory instance.).
 java.util.Collection DirectSchedulerFactory.getAllSchedulers()
           Returns a handle to all known Schedulers (made by any StdSchedulerFactory instance.).
protected abstract  java.lang.Object RemoteMBeanScheduler.getAttribute(java.lang.String attribute)
          Get the given attribute of the remote Scheduler MBean.
protected abstract  javax.management.AttributeList RemoteMBeanScheduler.getAttributes(java.lang.String[] attributes)
          Get the given attributes of the remote Scheduler MBean.
 Calendar StdScheduler.getCalendar(java.lang.String calName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Calendar RemoteScheduler.getCalendar(java.lang.String calName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Calendar RemoteMBeanScheduler.getCalendar(java.lang.String calName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] StdScheduler.getCalendarNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteScheduler.getCalendarNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteMBeanScheduler.getCalendarNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 SchedulerContext StdScheduler.getContext()
           Returns the SchedulerContext of the Scheduler.
 SchedulerContext RemoteScheduler.getContext()
           Returns the SchedulerContext of the Scheduler.
 SchedulerContext RemoteMBeanScheduler.getContext()
           Returns the SchedulerContext of the Scheduler.
 java.util.List RemoteScheduler.getCurrentlyExecutingJobs()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.List RemoteMBeanScheduler.getCurrentlyExecutingJobs()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
static Scheduler StdSchedulerFactory.getDefaultScheduler()
           Returns a handle to the default Scheduler, creating it if it does not yet exist.
 JobListener RemoteScheduler.getGlobalJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobListener RemoteMBeanScheduler.getGlobalJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.List RemoteScheduler.getGlobalJobListeners()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.List RemoteMBeanScheduler.getGlobalJobListeners()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 TriggerListener RemoteScheduler.getGlobalTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 TriggerListener RemoteMBeanScheduler.getGlobalTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.List RemoteScheduler.getGlobalTriggerListeners()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.List RemoteMBeanScheduler.getGlobalTriggerListeners()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobDetail StdScheduler.getJobDetail(java.lang.String jobName, java.lang.String jobGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 JobDetail RemoteScheduler.getJobDetail(java.lang.String jobName, java.lang.String jobGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 JobDetail RemoteMBeanScheduler.getJobDetail(java.lang.String jobName, java.lang.String jobGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] StdScheduler.getJobGroupNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteScheduler.getJobGroupNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteMBeanScheduler.getJobGroupNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 JobListener RemoteScheduler.getJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 JobListener RemoteMBeanScheduler.getJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.Set RemoteScheduler.getJobListenerNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.Set RemoteMBeanScheduler.getJobListenerNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.lang.String[] StdScheduler.getJobNames(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteScheduler.getJobNames(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteMBeanScheduler.getJobNames(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 SchedulerMetaData RemoteScheduler.getMetaData()
           
 SchedulerMetaData RemoteMBeanScheduler.getMetaData()
           
 java.util.Set StdScheduler.getPausedTriggerGroups()
           
 java.util.Set RemoteScheduler.getPausedTriggerGroups()
           
 java.util.Set RemoteMBeanScheduler.getPausedTriggerGroups()
           
protected  RemotableQuartzScheduler RemoteScheduler.getRemoteScheduler()
           
 Scheduler StdSchedulerFactory.getScheduler()
           Returns a handle to the Scheduler produced by this factory.
 Scheduler DirectSchedulerFactory.getScheduler()
           Returns a handle to the Scheduler produced by this factory.
 Scheduler StdSchedulerFactory.getScheduler(java.lang.String schedName)
           Returns a handle to the Scheduler with the given name, if it exists (if it has already been instantiated).
 Scheduler DirectSchedulerFactory.getScheduler(java.lang.String schedName)
           Returns a handle to the Scheduler with the given name, if it exists.
 java.lang.String RemoteScheduler.getSchedulerInstanceId()
           Returns the instance Id of the Scheduler.
 java.lang.String RemoteMBeanScheduler.getSchedulerInstanceId()
           Returns the instance Id of the Scheduler.
 java.util.List RemoteScheduler.getSchedulerListeners()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.List RemoteMBeanScheduler.getSchedulerListeners()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.lang.String RemoteScheduler.getSchedulerName()
           Returns the name of the Scheduler.
 java.lang.String RemoteMBeanScheduler.getSchedulerName()
           Returns the name of the Scheduler.
 Trigger StdScheduler.getTrigger(java.lang.String triggerName, java.lang.String triggerGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Trigger RemoteScheduler.getTrigger(java.lang.String triggerName, java.lang.String triggerGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Trigger RemoteMBeanScheduler.getTrigger(java.lang.String triggerName, java.lang.String triggerGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] StdScheduler.getTriggerGroupNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteScheduler.getTriggerGroupNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteMBeanScheduler.getTriggerGroupNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 TriggerListener RemoteScheduler.getTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 TriggerListener RemoteMBeanScheduler.getTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.Set RemoteScheduler.getTriggerListenerNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.Set RemoteMBeanScheduler.getTriggerListenerNames()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.lang.String[] StdScheduler.getTriggerNames(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteScheduler.getTriggerNames(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.lang.String[] RemoteMBeanScheduler.getTriggerNames(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Trigger[] StdScheduler.getTriggersOfJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Trigger[] RemoteScheduler.getTriggersOfJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 Trigger[] RemoteMBeanScheduler.getTriggersOfJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 int StdScheduler.getTriggerState(java.lang.String triggerName, java.lang.String triggerGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 int RemoteScheduler.getTriggerState(java.lang.String triggerName, java.lang.String triggerGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 int RemoteMBeanScheduler.getTriggerState(java.lang.String triggerName, java.lang.String triggerGroup)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdSchedulerFactory.initialize()
           Initialize the SchedulerFactory with the contents of a Properties file and overriding System properties.
abstract  void RemoteMBeanScheduler.initialize()
          Initialize this RemoteMBeanScheduler instance, connecting to the remote MBean server.
 void StdSchedulerFactory.initialize(java.io.InputStream propertiesStream)
           Initialize the SchedulerFactory with the contents of the Properties file opened with the given InputStream.
 void StdSchedulerFactory.initialize(java.util.Properties props)
           Initialize the SchedulerFactory with the contents of the given Properties object.
 void StdSchedulerFactory.initialize(java.lang.String filename)
           Initialize the SchedulerFactory with the contents of the Properties file with the given name.
protected abstract  java.lang.Object RemoteMBeanScheduler.invoke(java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
          Invoke the given operation on the remote Scheduler MBean.
 boolean RemoteScheduler.isInStandbyMode()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.isInStandbyMode()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.isShutdown()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.isShutdown()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.isStarted()
          Whether the scheduler has been started.
 boolean RemoteMBeanScheduler.isStarted()
          Whether the scheduler has been started.
 void StdScheduler.pauseAll()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.pauseAll()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.pauseAll()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.pauseJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.pauseJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.pauseJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.pauseJobGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.pauseJobGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.pauseJobGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.pauseTrigger(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.pauseTrigger(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.pauseTrigger(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.pauseTriggerGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.pauseTriggerGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.pauseTriggerGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteScheduler.removeGlobalJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.removeGlobalJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.removeGlobalTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.removeGlobalTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.removeJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.removeJobListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.removeSchedulerListener(SchedulerListener schedulerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.removeSchedulerListener(SchedulerListener schedulerListener)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteScheduler.removeTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 boolean RemoteMBeanScheduler.removeTriggerListener(java.lang.String name)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 java.util.Date StdScheduler.rescheduleJob(java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date RemoteScheduler.rescheduleJob(java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date RemoteMBeanScheduler.rescheduleJob(java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.resumeAll()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeAll()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.resumeAll()
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.resumeJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.resumeJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.resumeJobGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeJobGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.resumeJobGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.resumeTrigger(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeTrigger(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.resumeTrigger(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.resumeTriggerGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.resumeTriggerGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.resumeTriggerGroup(java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date StdScheduler.scheduleJob(JobDetail jobDetail, Trigger trigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date RemoteScheduler.scheduleJob(JobDetail jobDetail, Trigger trigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date RemoteMBeanScheduler.scheduleJob(JobDetail jobDetail, Trigger trigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date StdScheduler.scheduleJob(Trigger trigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date RemoteScheduler.scheduleJob(Trigger trigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 java.util.Date RemoteMBeanScheduler.scheduleJob(Trigger trigger)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.setJobFactory(JobFactory factory)
           
 void RemoteScheduler.setJobFactory(JobFactory factory)
           
 void RemoteMBeanScheduler.setJobFactory(JobFactory factory)
           
 void RemoteMBeanScheduler.setSchedulerObjectName(javax.management.ObjectName schedulerObjectName)
          Set the name under which the Scheduler MBean is registered on the remote MBean server.
 void RemoteMBeanScheduler.setSchedulerObjectName(java.lang.String schedulerObjectName)
          Set the name under which the Scheduler MBean is registered on the remote MBean server.
 void RemoteScheduler.shutdown()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.shutdown()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.shutdown(boolean waitForJobsToComplete)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.shutdown(boolean waitForJobsToComplete)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.standby()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.standby()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.start()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.start()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.start()
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.startDelayed(int seconds)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteScheduler.startDelayed(int seconds)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.startDelayed(int seconds)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.triggerJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.triggerJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.triggerJob(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.triggerJob(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.triggerJob(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.triggerJob(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void StdScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 void RemoteMBeanScheduler.triggerJobWithVolatileTrigger(java.lang.String jobName, java.lang.String groupName, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean StdScheduler.unscheduleJob(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteScheduler.unscheduleJob(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 boolean RemoteMBeanScheduler.unscheduleJob(java.lang.String triggerName, java.lang.String groupName)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 

Constructors in org.quartz.impl that throw SchedulerException
StdSchedulerFactory(java.util.Properties props)
          Create a StdSchedulerFactory that has been initialized via StdSchedulerFactory.initialize(Properties).
StdSchedulerFactory(java.lang.String fileName)
          Create a StdSchedulerFactory that has been initialized via StdSchedulerFactory.initialize(String).
 

Uses of SchedulerException in org.quartz.impl.jdbcjobstore
 

Subclasses of SchedulerException in org.quartz.impl.jdbcjobstore
 class LockException
           Exception class for when there is a failure obtaining or releasing a resource lock.
 class NoSuchDelegateException
           Exception class for when a driver delegate cannot be found for a given configuration, or lack thereof.
 

Methods in org.quartz.impl.jdbcjobstore that throw SchedulerException
 void JobStoreSupport.schedulerStarted()
           
 

Uses of SchedulerException in org.quartz.jobs.ee.jms
 

Subclasses of SchedulerException in org.quartz.jobs.ee.jms
 class JmsJobException
          The JmsJobException is used to indicate an error during sending of a javax.jms.Messaage.
 

Uses of SchedulerException in org.quartz.listeners
 

Methods in org.quartz.listeners with parameters of type SchedulerException
 void SchedulerListenerSupport.schedulerError(java.lang.String msg, SchedulerException cause)
           
 void BroadcastSchedulerListener.schedulerError(java.lang.String msg, SchedulerException cause)
           
 

Uses of SchedulerException in org.quartz.plugins
 

Methods in org.quartz.plugins that throw SchedulerException
 void SchedulerPluginWithUserTransactionSupport.initialize(java.lang.String name, Scheduler scheduler)
           
 

Uses of SchedulerException in org.quartz.plugins.history
 

Methods in org.quartz.plugins.history that throw SchedulerException
 void LoggingTriggerHistoryPlugin.initialize(java.lang.String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 void LoggingJobHistoryPlugin.initialize(java.lang.String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of SchedulerException in org.quartz.plugins.management
 

Methods in org.quartz.plugins.management that throw SchedulerException
 void ShutdownHookPlugin.initialize(java.lang.String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of SchedulerException in org.quartz.plugins.xml
 

Methods in org.quartz.plugins.xml that throw SchedulerException
 void XMLSchedulingDataProcessorPlugin.initialize(java.lang.String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 

Uses of SchedulerException in org.quartz.simpl
 

Methods in org.quartz.simpl that throw SchedulerException
 java.lang.String SystemPropertyInstanceIdGenerator.generateInstanceId()
          Returns the cluster wide value for this scheduler instance's id, based on a system property
 java.lang.String SimpleInstanceIdGenerator.generateInstanceId()
           
 java.lang.String HostnameInstanceIdGenerator.generateInstanceId()
           
 Job SimpleJobFactory.newJob(TriggerFiredBundle bundle)
           
 Job PropertySettingJobFactory.newJob(TriggerFiredBundle bundle)
           
 void RAMJobStore.schedulerStarted()
           
protected  void PropertySettingJobFactory.setBeanProps(java.lang.Object obj, JobDataMap data)
           
 

Uses of SchedulerException in org.quartz.spi
 

Methods in org.quartz.spi that throw SchedulerException
 java.lang.String InstanceIdGenerator.generateInstanceId()
          Generate the instance id for a Scheduler
 java.util.Date TimeBroker.getCurrentTime()
          Deprecated.  Get the current time, as known by the TimeBroker.
 void SchedulerPlugin.initialize(java.lang.String name, Scheduler scheduler)
           Called during creation of the Scheduler in order to give the SchedulerPlugin a chance to initialize.
 Job JobFactory.newJob(TriggerFiredBundle bundle)
          Called by the scheduler at the time of the trigger firing, in order to produce a Job instance on which to call execute.
 void JobStore.schedulerStarted()
           Called by the QuartzScheduler to inform the JobStore that the scheduler has started.
 

Uses of SchedulerException in org.quartz.xml
 

Methods in org.quartz.xml that throw SchedulerException
protected  void XMLSchedulingDataProcessor.executePreProcessCommands(Scheduler scheduler)
           
protected  void XMLSchedulingDataProcessor.processFile(java.lang.String fileName, java.lang.String systemId)
          Process the xmlfile named fileName with the given system ID.
 void XMLSchedulingDataProcessor.processFileAndScheduleJobs(Scheduler sched, boolean overWriteExistingJobs)
          Process the xml file in the default location, and schedule all of the jobs defined within it.
 void XMLSchedulingDataProcessor.processStreamAndScheduleJobs(java.io.InputStream stream, java.lang.String systemId, Scheduler sched)
          Process the xmlfile named fileName with the given system ID.
protected  void XMLSchedulingDataProcessor.scheduleJobs(Scheduler sched)
          Schedules the given sets of jobs and triggers.
 



Copyright 2001-2019, Terracotta, Inc.