Uses of Class
org.quartz.JobPersistenceException

Packages that use JobPersistenceException
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.impl.jdbcjobstore   
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. 
 

Uses of JobPersistenceException in org.quartz
 

Subclasses of JobPersistenceException in org.quartz
 class ObjectAlreadyExistsException
           An exception that is thrown to indicate that an attempt to store a new object (i.e.
 

Uses of JobPersistenceException in org.quartz.core
 

Methods in org.quartz.core that throw JobPersistenceException
protected  void QuartzScheduler.notifyJobStoreJobComplete(SchedulingContext ctxt, Trigger trigger, JobDetail detail, int instCode)
           
 

Uses of JobPersistenceException in org.quartz.impl.jdbcjobstore
 

Subclasses of JobPersistenceException 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 JobPersistenceException
protected  void JobStoreTX.recoverJobs()
           Recover any failed or misfired jobs and clean up the data store as appropriate.
protected  void JobStoreTX.cleanVolatileTriggerAndJobs()
           
 void JobStoreTX.storeJobAndTrigger(SchedulingContext ctxt, JobDetail newJob, Trigger newTrigger)
           Store the given JobDetail and Trigger.
 void JobStoreTX.storeJob(SchedulingContext ctxt, JobDetail newJob, boolean replaceExisting)
           Store the given JobDetail.
 boolean JobStoreTX.removeJob(SchedulingContext ctxt, String jobName, String groupName)
           Remove (delete) the Job with the given name, and any Trigger s that reference it.
 JobDetail JobStoreTX.retrieveJob(SchedulingContext ctxt, String jobName, String groupName)
           Retrieve the JobDetail for the given Job.
 void JobStoreTX.storeTrigger(SchedulingContext ctxt, Trigger newTrigger, boolean replaceExisting)
           Store the given Trigger.
 boolean JobStoreTX.removeTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Remove (delete) the Trigger with the given name.
 boolean JobStoreTX.replaceTrigger(SchedulingContext ctxt, String triggerName, String groupName, Trigger newTrigger)
           
 Trigger JobStoreTX.retrieveTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Retrieve the given Trigger.
 void JobStoreTX.storeCalendar(SchedulingContext ctxt, String calName, Calendar calendar, boolean replaceExisting, boolean updateTriggers)
           Store the given Calendar.
 boolean JobStoreTX.removeCalendar(SchedulingContext ctxt, String calName)
           Remove (delete) the Calendar with the given name.
 Calendar JobStoreTX.retrieveCalendar(SchedulingContext ctxt, String calName)
           Retrieve the given Trigger.
 int JobStoreTX.getNumberOfJobs(SchedulingContext ctxt)
           Get the number of Job s that are stored in the JobStore.
 int JobStoreTX.getNumberOfTriggers(SchedulingContext ctxt)
           Get the number of Trigger s that are stored in the JobsStore.
 int JobStoreTX.getNumberOfCalendars(SchedulingContext ctxt)
           Get the number of Calendar s that are stored in the JobsStore.
 Set JobStoreTX.getPausedTriggerGroups(SchedulingContext ctxt)
           
 String[] JobStoreTX.getJobNames(SchedulingContext ctxt, String groupName)
           Get the names of all of the Job s that have the given group name.
 String[] JobStoreTX.getTriggerNames(SchedulingContext ctxt, String groupName)
           Get the names of all of the Trigger s that have the given group name.
 String[] JobStoreTX.getJobGroupNames(SchedulingContext ctxt)
           Get the names of all of the Job groups.
 String[] JobStoreTX.getTriggerGroupNames(SchedulingContext ctxt)
           Get the names of all of the Trigger groups.
 String[] JobStoreTX.getCalendarNames(SchedulingContext ctxt)
           Get the names of all of the Calendar s in the JobStore.
 Trigger[] JobStoreTX.getTriggersForJob(SchedulingContext ctxt, String jobName, String groupName)
           Get all of the Triggers that are associated to the given Job.
 int JobStoreTX.getTriggerState(SchedulingContext ctxt, String triggerName, String groupName)
           Get the current state of the identified Trigger.
 void JobStoreTX.pauseTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Pause the Trigger with the given name.
 void JobStoreTX.pauseTriggerGroup(SchedulingContext ctxt, String groupName)
           Pause all of the Triggers in the given group.
 void JobStoreTX.pauseJob(SchedulingContext ctxt, String jobName, String groupName)
           Pause the Job with the given name - by pausing all of its current Triggers.
 void JobStoreTX.pauseJobGroup(SchedulingContext ctxt, String groupName)
           Pause all of the Jobs in the given group - by pausing all of their Triggers.
 void JobStoreTX.resumeTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Resume (un-pause) the Trigger with the given name.
 void JobStoreTX.resumeTriggerGroup(SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Triggers in the given group.
 void JobStoreTX.resumeJob(SchedulingContext ctxt, String jobName, String groupName)
           Resume (un-pause) the Job with the given name.
 void JobStoreTX.resumeJobGroup(SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Jobs in the given group.
 void JobStoreTX.pauseAll(SchedulingContext ctxt)
           Pause all triggers - equivalent of calling pauseTriggerGroup(group) on every group.
 void JobStoreTX.resumeAll(SchedulingContext ctxt)
           Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group) on every group.
 Trigger JobStoreTX.acquireNextTrigger(SchedulingContext ctxt, long noLaterThan)
           Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler.
 void JobStoreTX.releaseAcquiredTrigger(SchedulingContext ctxt, Trigger trigger)
           Inform the JobStore that the scheduler no longer plans to fire the given Trigger, that it had previously acquired (reserved).
 TriggerFiredBundle JobStoreTX.triggerFired(SchedulingContext ctxt, Trigger trigger)
           Inform the JobStore that the scheduler is now firing the given Trigger (executing its associated Job), that it had previously acquired (reserved).
 void JobStoreTX.triggeredJobComplete(SchedulingContext ctxt, Trigger trigger, JobDetail jobDetail, int triggerInstCode)
           Inform the JobStore that the scheduler has completed the firing of the given Trigger (and the execution its associated Job), and that the JobDataMap in the given JobDetail should be updated if the Job is stateful.
protected  boolean JobStoreTX.doRecoverMisfires()
           
protected  boolean JobStoreTX.doCheckin()
           
protected  Connection JobStoreSupport.getConnection()
           
protected abstract  void JobStoreSupport.cleanVolatileTriggerAndJobs()
           Removes all volatile data
protected  void JobStoreSupport.cleanVolatileTriggerAndJobs(Connection conn)
           Removes all volatile data.
protected abstract  void JobStoreSupport.recoverJobs()
           Will recover any failed or misfired jobs and clean up the data store as appropriate.
protected  void JobStoreSupport.recoverJobs(Connection conn)
           Will recover any failed or misfired jobs and clean up the data store as appropriate.
protected  boolean JobStoreSupport.recoverMisfiredJobs(Connection conn, boolean recovering)
           
protected  boolean JobStoreSupport.updateMisfiredTrigger(Connection conn, SchedulingContext ctxt, String triggerName, String groupName, String newStateIfNotComplete, boolean forceState)
           
protected  void JobStoreSupport.storeJob(Connection conn, SchedulingContext ctxt, JobDetail newJob, boolean replaceExisting)
           Insert or update a job.
protected  boolean JobStoreSupport.jobExists(Connection conn, String jobName, String groupName)
           Check existence of a given job.
protected  void JobStoreSupport.storeTrigger(Connection conn, SchedulingContext ctxt, Trigger newTrigger, JobDetail job, boolean replaceExisting, String state, boolean forceState, boolean recovering)
           Insert or update a trigger.
protected  boolean JobStoreSupport.triggerExists(Connection conn, String triggerName, String groupName)
           Check existence of a given trigger.
protected  boolean JobStoreSupport.removeJob(Connection conn, SchedulingContext ctxt, String jobName, String groupName, boolean activeDeleteSafe)
           
protected  JobDetail JobStoreSupport.retrieveJob(Connection conn, SchedulingContext ctxt, String jobName, String groupName)
           
protected  boolean JobStoreSupport.removeTrigger(Connection conn, SchedulingContext ctxt, String triggerName, String groupName)
           
protected  boolean JobStoreSupport.replaceTrigger(Connection conn, SchedulingContext ctxt, String triggerName, String groupName, Trigger newTrigger)
           
protected  Trigger JobStoreSupport.retrieveTrigger(Connection conn, SchedulingContext ctxt, String triggerName, String groupName)
           
 int JobStoreSupport.getTriggerState(Connection conn, SchedulingContext ctxt, String triggerName, String groupName)
           
protected  void JobStoreSupport.storeCalendar(Connection conn, SchedulingContext ctxt, String calName, Calendar calendar, boolean replaceExisting, boolean updateTriggers)
           
protected  boolean JobStoreSupport.calendarExists(Connection conn, String calName)
           
protected  boolean JobStoreSupport.removeCalendar(Connection conn, SchedulingContext ctxt, String calName)
           
protected  Calendar JobStoreSupport.retrieveCalendar(Connection conn, SchedulingContext ctxt, String calName)
           
protected  int JobStoreSupport.getNumberOfJobs(Connection conn, SchedulingContext ctxt)
           
protected  int JobStoreSupport.getNumberOfTriggers(Connection conn, SchedulingContext ctxt)
           
protected  int JobStoreSupport.getNumberOfCalendars(Connection conn, SchedulingContext ctxt)
           
protected  String[] JobStoreSupport.getJobNames(Connection conn, SchedulingContext ctxt, String groupName)
           
protected  String[] JobStoreSupport.getTriggerNames(Connection conn, SchedulingContext ctxt, String groupName)
           
protected  String[] JobStoreSupport.getJobGroupNames(Connection conn, SchedulingContext ctxt)
           
protected  String[] JobStoreSupport.getTriggerGroupNames(Connection conn, SchedulingContext ctxt)
           
protected  String[] JobStoreSupport.getCalendarNames(Connection conn, SchedulingContext ctxt)
           
protected  Trigger[] JobStoreSupport.getTriggersForJob(Connection conn, SchedulingContext ctxt, String jobName, String groupName)
           
 void JobStoreSupport.pauseTrigger(Connection conn, SchedulingContext ctxt, String triggerName, String groupName)
           Pause the Trigger with the given name.
protected  String JobStoreSupport.getStatusForResumedTrigger(Connection conn, SchedulingContext ctxt, TriggerStatus status)
           
protected  String JobStoreSupport.getNewStatusForTrigger(Connection conn, SchedulingContext ctxt, String jobName, String groupName)
           
 void JobStoreSupport.resumeTrigger(Connection conn, SchedulingContext ctxt, String triggerName, String groupName)
           Resume (un-pause) the Trigger with the given name.
 void JobStoreSupport.pauseTriggerGroup(Connection conn, SchedulingContext ctxt, String groupName)
           Pause all of the Triggers in the given group.
 Set JobStoreSupport.getPausedTriggerGroups(Connection conn, SchedulingContext ctxt)
           Pause all of the Triggers in the given group.
 void JobStoreSupport.resumeTriggerGroup(Connection conn, SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Triggers in the given group.
 void JobStoreSupport.pauseAll(Connection conn, SchedulingContext ctxt)
           Pause all triggers - equivalent of calling pauseTriggerGroup(group) on every group.
 void JobStoreSupport.resumeAll(Connection conn, SchedulingContext ctxt)
          protected
protected  Trigger JobStoreSupport.acquireNextTrigger(Connection conn, SchedulingContext ctxt, long noLaterThan)
           
protected  void JobStoreSupport.releaseAcquiredTrigger(Connection conn, SchedulingContext ctxt, Trigger trigger)
           
protected  TriggerFiredBundle JobStoreSupport.triggerFired(Connection conn, SchedulingContext ctxt, Trigger trigger)
           
protected  void JobStoreSupport.triggeredJobComplete(Connection conn, SchedulingContext ctxt, Trigger trigger, JobDetail jobDetail, int triggerInstCode)
           
protected abstract  boolean JobStoreSupport.doRecoverMisfires()
           
protected abstract  boolean JobStoreSupport.doCheckin()
           
protected  List JobStoreSupport.findFailedInstances(Connection conn)
          Get a list of all scheduler instances in the cluster that may have failed.
protected  List JobStoreSupport.clusterCheckIn(Connection conn)
           
protected  void JobStoreSupport.clusterRecover(Connection conn, List failedInstances)
           
protected  void JobStoreSupport.closeConnection(Connection conn)
          Closes the supplied connection
protected  void JobStoreSupport.rollbackConnection(Connection conn)
          Rollback the supplied connection
protected  void JobStoreSupport.commitConnection(Connection conn)
          Commit the supplied connection
protected  void JobStoreCMT.recoverJobs()
           Recover any failed or misfired jobs and clean up the data store as appropriate.
protected  void JobStoreCMT.cleanVolatileTriggerAndJobs()
           
 void JobStoreCMT.storeJobAndTrigger(SchedulingContext ctxt, JobDetail newJob, Trigger newTrigger)
           Store the given JobDetail and Trigger.
 void JobStoreCMT.storeJob(SchedulingContext ctxt, JobDetail newJob, boolean replaceExisting)
           Store the given JobDetail.
 boolean JobStoreCMT.removeJob(SchedulingContext ctxt, String jobName, String groupName)
           Remove (delete) the Job with the given name, and any Trigger s that reference it.
 JobDetail JobStoreCMT.retrieveJob(SchedulingContext ctxt, String jobName, String groupName)
           Retrieve the JobDetail for the given Job.
 void JobStoreCMT.storeTrigger(SchedulingContext ctxt, Trigger newTrigger, boolean replaceExisting)
           Store the given Trigger.
 boolean JobStoreCMT.removeTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Remove (delete) the Trigger with the given name.
 boolean JobStoreCMT.replaceTrigger(SchedulingContext ctxt, String triggerName, String groupName, Trigger newTrigger)
           
 Trigger JobStoreCMT.retrieveTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Retrieve the given Trigger.
 void JobStoreCMT.storeCalendar(SchedulingContext ctxt, String calName, Calendar calendar, boolean replaceExisting, boolean updateTriggers)
           Store the given Calendar.
 boolean JobStoreCMT.removeCalendar(SchedulingContext ctxt, String calName)
           Remove (delete) the Calendar with the given name.
 Calendar JobStoreCMT.retrieveCalendar(SchedulingContext ctxt, String calName)
           Retrieve the given Trigger.
 int JobStoreCMT.getNumberOfJobs(SchedulingContext ctxt)
           Get the number of Job s that are stored in the JobStore.
 int JobStoreCMT.getNumberOfTriggers(SchedulingContext ctxt)
           Get the number of Trigger s that are stored in the JobsStore.
 int JobStoreCMT.getNumberOfCalendars(SchedulingContext ctxt)
           Get the number of Calendar s that are stored in the JobsStore.
 Set JobStoreCMT.getPausedTriggerGroups(SchedulingContext ctxt)
           
 String[] JobStoreCMT.getJobNames(SchedulingContext ctxt, String groupName)
           Get the names of all of the Job s that have the given group name.
 String[] JobStoreCMT.getTriggerNames(SchedulingContext ctxt, String groupName)
           Get the names of all of the Trigger s that have the given group name.
 String[] JobStoreCMT.getJobGroupNames(SchedulingContext ctxt)
           Get the names of all of the Job groups.
 String[] JobStoreCMT.getTriggerGroupNames(SchedulingContext ctxt)
           Get the names of all of the Trigger groups.
 String[] JobStoreCMT.getCalendarNames(SchedulingContext ctxt)
           Get the names of all of the Calendar s in the JobStore.
 Trigger[] JobStoreCMT.getTriggersForJob(SchedulingContext ctxt, String jobName, String groupName)
           Get all of the Triggers that are associated to the given Job.
 int JobStoreCMT.getTriggerState(SchedulingContext ctxt, String triggerName, String groupName)
           Get the current state of the identified Trigger.
 void JobStoreCMT.pauseTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Pause the Trigger with the given name.
 void JobStoreCMT.pauseTriggerGroup(SchedulingContext ctxt, String groupName)
           Pause all of the Triggers in the given group.
 void JobStoreCMT.pauseJob(SchedulingContext ctxt, String jobName, String groupName)
           Pause the Job with the given name - by pausing all of its current Triggers.
 void JobStoreCMT.pauseJobGroup(SchedulingContext ctxt, String groupName)
           Pause all of the Jobs in the given group - by pausing all of their Triggers.
 void JobStoreCMT.resumeTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Resume (un-pause) the Trigger with the given name.
 void JobStoreCMT.resumeTriggerGroup(SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Triggers in the given group.
 void JobStoreCMT.resumeJob(SchedulingContext ctxt, String jobName, String groupName)
           Resume (un-pause) the Job with the given name.
 void JobStoreCMT.resumeJobGroup(SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Jobs in the given group.
 void JobStoreCMT.pauseAll(SchedulingContext ctxt)
           Pause all triggers - equivalent of calling pauseTriggerGroup(group) on every group.
 void JobStoreCMT.resumeAll(SchedulingContext ctxt)
           Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group) on every group.
 Trigger JobStoreCMT.acquireNextTrigger(SchedulingContext ctxt, long noLaterThan)
           Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler.
 void JobStoreCMT.releaseAcquiredTrigger(SchedulingContext ctxt, Trigger trigger)
           Inform the JobStore that the scheduler no longer plans to fire the given Trigger, that it had previously acquired (reserved).
 TriggerFiredBundle JobStoreCMT.triggerFired(SchedulingContext ctxt, Trigger trigger)
           Inform the JobStore that the scheduler is now firing the given Trigger (executing its associated Job), that it had previously acquired (reserved).
 void JobStoreCMT.triggeredJobComplete(SchedulingContext ctxt, Trigger trigger, JobDetail jobDetail, int triggerInstCode)
           Inform the JobStore that the scheduler has completed the firing of the given Trigger (and the execution its associated Job), and that the JobDataMap in the given JobDetail should be updated if the Job is stateful.
protected  boolean JobStoreCMT.doRecoverMisfires()
           
protected  boolean JobStoreCMT.doCheckin()
           
protected  Connection JobStoreCMT.getNonManagedTXConnection()
           
 

Uses of JobPersistenceException in org.quartz.simpl
 

Methods in org.quartz.simpl that throw JobPersistenceException
 void RAMJobStore.storeJobAndTrigger(SchedulingContext ctxt, JobDetail newJob, Trigger newTrigger)
           Store the given JobDetail and Trigger.
 void RAMJobStore.storeTrigger(SchedulingContext ctxt, Trigger newTrigger, boolean replaceExisting)
           Store the given Trigger.
 boolean RAMJobStore.replaceTrigger(SchedulingContext ctxt, String triggerName, String groupName, Trigger newTrigger)
           
 int RAMJobStore.getTriggerState(SchedulingContext ctxt, String triggerName, String groupName)
           Get the current state of the identified Trigger.
 boolean RAMJobStore.removeCalendar(SchedulingContext ctxt, String calName)
           Remove (delete) the Calendar with the given name.
 Set RAMJobStore.getPausedTriggerGroups(SchedulingContext ctxt)
           
 

Uses of JobPersistenceException in org.quartz.spi
 

Methods in org.quartz.spi that throw JobPersistenceException
 void JobStore.storeJobAndTrigger(SchedulingContext ctxt, JobDetail newJob, Trigger newTrigger)
           Store the given JobDetail and Trigger.
 void JobStore.storeJob(SchedulingContext ctxt, JobDetail newJob, boolean replaceExisting)
           Store the given JobDetail.
 boolean JobStore.removeJob(SchedulingContext ctxt, String jobName, String groupName)
           Remove (delete) the Job with the given name, and any Trigger s that reference it.
 JobDetail JobStore.retrieveJob(SchedulingContext ctxt, String jobName, String groupName)
           Retrieve the JobDetail for the given Job.
 void JobStore.storeTrigger(SchedulingContext ctxt, Trigger newTrigger, boolean replaceExisting)
           Store the given Trigger.
 boolean JobStore.removeTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Remove (delete) the Trigger with the given name.
 boolean JobStore.replaceTrigger(SchedulingContext ctxt, String triggerName, 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.
 Trigger JobStore.retrieveTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Retrieve the given Trigger.
 void JobStore.storeCalendar(SchedulingContext ctxt, String name, Calendar calendar, boolean replaceExisting, boolean updateTriggers)
           Store the given Calendar.
 boolean JobStore.removeCalendar(SchedulingContext ctxt, String calName)
           Remove (delete) the Calendar with the given name.
 Calendar JobStore.retrieveCalendar(SchedulingContext ctxt, String calName)
           Retrieve the given Trigger.
 int JobStore.getNumberOfJobs(SchedulingContext ctxt)
           Get the number of Job s that are stored in the JobsStore.
 int JobStore.getNumberOfTriggers(SchedulingContext ctxt)
           Get the number of Trigger s that are stored in the JobsStore.
 int JobStore.getNumberOfCalendars(SchedulingContext ctxt)
           Get the number of Calendar s that are stored in the JobsStore.
 String[] JobStore.getJobNames(SchedulingContext ctxt, String groupName)
           Get the names of all of the Job s that have the given group name.
 String[] JobStore.getTriggerNames(SchedulingContext ctxt, String groupName)
           Get the names of all of the Trigger s that have the given group name.
 String[] JobStore.getJobGroupNames(SchedulingContext ctxt)
           Get the names of all of the Job groups.
 String[] JobStore.getTriggerGroupNames(SchedulingContext ctxt)
           Get the names of all of the Trigger groups.
 String[] JobStore.getCalendarNames(SchedulingContext ctxt)
           Get the names of all of the Calendar s in the JobStore.
 Trigger[] JobStore.getTriggersForJob(SchedulingContext ctxt, String jobName, String groupName)
           Get all of the Triggers that are associated to the given Job.
 int JobStore.getTriggerState(SchedulingContext ctxt, String triggerName, String triggerGroup)
           Get the current state of the identified Trigger.
 void JobStore.pauseTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Pause the Trigger with the given name.
 void JobStore.pauseTriggerGroup(SchedulingContext ctxt, String groupName)
           Pause all of the Triggers in the given group.
 void JobStore.pauseJob(SchedulingContext ctxt, String jobName, String groupName)
           Pause the Job with the given name - by pausing all of its current Triggers.
 void JobStore.pauseJobGroup(SchedulingContext ctxt, String groupName)
           Pause all of the Jobs in the given group - by pausing all of their Triggers.
 void JobStore.resumeTrigger(SchedulingContext ctxt, String triggerName, String groupName)
           Resume (un-pause) the Trigger with the given name.
 void JobStore.resumeTriggerGroup(SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Triggers in the given group.
 Set JobStore.getPausedTriggerGroups(SchedulingContext ctxt)
           
 void JobStore.resumeJob(SchedulingContext ctxt, String jobName, String groupName)
           Resume (un-pause) the Job with the given name.
 void JobStore.resumeJobGroup(SchedulingContext ctxt, String groupName)
           Resume (un-pause) all of the Jobs in the given group.
 void JobStore.pauseAll(SchedulingContext ctxt)
           Pause all triggers - equivalent of calling pauseTriggerGroup(group) on every group.
 void JobStore.resumeAll(SchedulingContext ctxt)
           Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group) on every group.
 Trigger JobStore.acquireNextTrigger(SchedulingContext ctxt, long noLaterThan)
           Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler.
 void JobStore.releaseAcquiredTrigger(SchedulingContext ctxt, Trigger trigger)
           Inform the JobStore that the scheduler no longer plans to fire the given Trigger, that it had previously acquired (reserved).
 TriggerFiredBundle JobStore.triggerFired(SchedulingContext ctxt, Trigger trigger)
           Inform the JobStore that the scheduler is now firing the given Trigger (executing its associated Job), that it had previously acquired (reserved).
 void JobStore.triggeredJobComplete(SchedulingContext ctxt, Trigger trigger, JobDetail jobDetail, int triggerInstCode)
           Inform the JobStore that the scheduler has completed the firing of the given Trigger (and the execution its associated Job), and that the JobDataMap in the given JobDetail should be updated if the Job is stateful.
 


Quartz Enterprise Job Scheduler Project Page