Uses of Class
org.quartz.utils.Key

Packages that use Key
org.quartz The main package of Quartz, containing the client-side interfaces. 
org.quartz.impl.jdbcjobstore   
org.quartz.listeners   
org.quartz.utils   
org.quartz.xml   
 

Uses of Key in org.quartz
 

Methods in org.quartz that return Key
 Key Trigger.getKey()
           
 Key JobDetail.getKey()
           
 

Uses of Key in org.quartz.impl.jdbcjobstore
 

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

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

Methods in org.quartz.listeners with parameters of type Key
 void JobChainingJobListener.addJobChainLink(Key firstJob, Key secondJob)
          Add a chain mapping - when the Job identified by the first key completes the job identified by the second key will be triggered.
 

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)
           
 

Uses of Key in org.quartz.xml
 

Fields in org.quartz.xml with type parameters of type Key
protected  java.util.List<Key> XMLSchedulingDataProcessor.jobsToDelete
           
protected  java.util.List<Key> XMLSchedulingDataProcessor.triggersToDelete
           
 



Copyright 2001-2019, Terracotta, Inc.