Uses of Class
org.quartz.utils.Key

Packages that use Key
org.quartz.impl.jdbcjobstore   
org.quartz.utils   
 

Uses of Key in org.quartz.impl.jdbcjobstore
 

Methods in org.quartz.impl.jdbcjobstore that return Key
 Key[] StdJDBCDelegate.selectMisfiredTriggers(Connection conn, long ts)
           Get the names of all of the triggers that have misfired.
 Key[] StdJDBCDelegate.selectTriggersInState(Connection conn, String state)
           Select all of the triggers in a given state.
 Key[] StdJDBCDelegate.selectMisfiredTriggersInState(Connection conn, String state, long ts)
           
 Key[] StdJDBCDelegate.selectMisfiredTriggersInGroupInState(Connection conn, String groupName, String state, long ts)
           Get the names of all of the triggers in the given group and state that have misfired.
 Key[] StdJDBCDelegate.selectTriggerNamesForJob(Connection conn, String jobName, String groupName)
           Get the names of all of the triggers associated with the given job.
 Key StdJDBCDelegate.selectTriggerForFireTime(Connection conn, long fireTime)
           Select the trigger that will be fired at the given fire time.
 Key[] StdJDBCDelegate.selectVolatileTriggers(Connection conn)
           
 Key[] StdJDBCDelegate.selectVolatileJobs(Connection conn)
           
 Key FiredTriggerRecord.getJobKey()
           
 Key FiredTriggerRecord.getTriggerKey()
           
 Key[] DriverDelegate.selectMisfiredTriggers(Connection conn, long ts)
           Get the names of all of the triggers that have misfired - according to the given timestamp.
 Key[] DriverDelegate.selectMisfiredTriggersInState(Connection conn, String state, long ts)
           Get the names of all of the triggers in the given state that have misfired - according to the given timestamp.
 Key[] DriverDelegate.selectMisfiredTriggersInGroupInState(Connection conn, String groupName, String state, long ts)
           Get the names of all of the triggers in the given group and state that have misfired - according to the given timestamp.
 Key[] DriverDelegate.selectVolatileTriggers(Connection conn)
           Get the names of all of the triggers that are volatile.
 Key[] DriverDelegate.selectVolatileJobs(Connection conn)
           Get the names of all of the jobs that are volatile.
 Key[] DriverDelegate.selectTriggerNamesForJob(Connection conn, String jobName, String groupName)
           Get the names of all of the triggers associated with the given job.
 Key[] DriverDelegate.selectTriggersInState(Connection conn, String state)
           Select all of the triggers in a given state.
 Key DriverDelegate.selectTriggerForFireTime(Connection conn, long fireTime)
           Select the trigger that will be fired at the given fire time.
 Key[] DB2v8Delegate.selectVolatileTriggers(Connection conn)
           
 Key[] DB2v8Delegate.selectVolatileJobs(Connection conn)
           
 Key[] DB2v7Delegate.selectVolatileTriggers(Connection conn)
           
 Key[] DB2v7Delegate.selectVolatileJobs(Connection conn)
           
 

Methods in org.quartz.impl.jdbcjobstore with parameters of type Key
 void FiredTriggerRecord.setJobKey(Key key)
           
 void FiredTriggerRecord.setTriggerKey(Key key)
           
 

Uses of Key in org.quartz.utils
 

Methods in org.quartz.utils that return Key
 Key TriggerStatus.getJobKey()
           
 Key TriggerStatus.getKey()
           
 

Methods in org.quartz.utils with parameters of type Key
 void TriggerStatus.setJobKey(Key jobKey)
           
 void TriggerStatus.setKey(Key key)
           
 


Quartz Enterprise Job Scheduler Project Page