Uses of Class org.quartz.JobDataMap (Quartz Parent POM 2.0.1 API)

Quartz Java



Uses of Class
org.quartz.JobDataMap

Packages that use JobDataMap
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.impl Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. 
org.quartz.impl.jdbcjobstore   
org.quartz.impl.triggers This package contains Trigger implementations that ship with Quartz. 
org.quartz.jobs.ee.jms   
org.quartz.jobs.ee.mail   
org.quartz.locality   
org.quartz.simpl Contains simple / light-weight implementations (with no dependencies on external libraries) of interfaces required by the org.quartz.core.QuartzScheduler. 
 

Uses of JobDataMap in org.quartz
 

Methods in org.quartz that return JobDataMap
 JobDataMap JobDetail.getJobDataMap()
           Get the JobDataMap that is associated with the Job.
 JobDataMap Trigger.getJobDataMap()
          Get the JobDataMap that is associated with the Trigger.
 JobDataMap JobExecutionContext.getMergedJobDataMap()
           Get the convenience JobDataMap of this execution context.
 

Methods in org.quartz with parameters of type JobDataMap
 void Scheduler.triggerJob(JobKey jobKey, JobDataMap data)
          Trigger the identified JobDetail (execute it now).
 JobBuilder JobBuilder.usingJobData(JobDataMap newJobDataMap)
          Set the JobDetail's JobDataMap, adding any values to it that were already set on this JobBuilder using any of the other 'usingJobData' methods.
 TriggerBuilder<T> TriggerBuilder.usingJobData(JobDataMap newJobDataMap)
          Set the Trigger's JobDataMap, adding any values to it that were already set on this TriggerBuilder using any of the other 'usingJobData' methods.
 

Uses of JobDataMap in org.quartz.core
 

Methods in org.quartz.core with parameters of type JobDataMap
 void QuartzScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Trigger the identified Job (execute it now) - with a non-volatile trigger.
 void RemotableQuartzScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           
 

Uses of JobDataMap in org.quartz.core.jmx
 

Methods in org.quartz.core.jmx that return JobDataMap
static JobDataMap JobDataMapSupport.newJobDataMap(Map<String,Object> map)
           
static JobDataMap JobDataMapSupport.newJobDataMap(TabularData tabularData)
           
 

Methods in org.quartz.core.jmx with parameters of type JobDataMap
static TabularData JobDataMapSupport.toTabularData(JobDataMap jobDataMap)
           
 

Uses of JobDataMap in org.quartz.impl
 

Methods in org.quartz.impl that return JobDataMap
 JobDataMap JobDetailImpl.getJobDataMap()
           
 JobDataMap JobExecutionContextImpl.getMergedJobDataMap()
           
 

Methods in org.quartz.impl with parameters of type JobDataMap
 void JobDetailImpl.setJobDataMap(JobDataMap jobDataMap)
           Set the JobDataMap to be associated with the Job.
 void RemoteScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void StdScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler.
 void RemoteMBeanScheduler.triggerJob(JobKey jobKey, JobDataMap data)
           Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associated with this instance.
 

Uses of JobDataMap in org.quartz.impl.jdbcjobstore
 

Methods in org.quartz.impl.jdbcjobstore that return JobDataMap
 JobDataMap StdJDBCDelegate.selectTriggerJobDataMap(Connection conn, String triggerName, String groupName)
           Select a trigger's JobDataMap.
 JobDataMap DriverDelegate.selectTriggerJobDataMap(Connection conn, String triggerName, String groupName)
           Select a trigger's JobDataMap.
 

Methods in org.quartz.impl.jdbcjobstore with parameters of type JobDataMap
protected  ByteArrayOutputStream StdJDBCDelegate.serializeJobData(JobDataMap data)
           Remove the transient data from and then create a serialized java.util.ByteArrayOutputStream version of a JobDataMap.
 

Uses of JobDataMap in org.quartz.impl.triggers
 

Methods in org.quartz.impl.triggers that return JobDataMap
 JobDataMap AbstractTrigger.getJobDataMap()
           Get the JobDataMap that is associated with the Trigger.
 

Methods in org.quartz.impl.triggers with parameters of type JobDataMap
 void AbstractTrigger.setJobDataMap(JobDataMap jobDataMap)
           Set the JobDataMap to be associated with the Trigger.
 

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

Methods in org.quartz.jobs.ee.jms with parameters of type JobDataMap
 javax.jms.Message JmsMessageFactory.createMessage(JobDataMap jobDataMap, javax.jms.Session session)
          Creates a javax.jms.Message.
static InitialContext JmsHelper.getInitialContext(JobDataMap jobDataMap)
           
static boolean JmsHelper.isDestinationSecure(JobDataMap jobDataMap)
           
static boolean JmsHelper.useTransaction(JobDataMap jobDataMap)
           
 

Uses of JobDataMap in org.quartz.jobs.ee.mail
 

Methods in org.quartz.jobs.ee.mail with parameters of type JobDataMap
protected  String SendMailJob.getOptionalParm(JobDataMap data, String property)
           
protected  String SendMailJob.getRequiredParm(JobDataMap data, String property, String constantName)
           
protected  SendMailJob.MailInfo SendMailJob.populateMailInfo(JobDataMap data, SendMailJob.MailInfo mailInfo)
           
 

Uses of JobDataMap in org.quartz.locality
 

Methods in org.quartz.locality that return JobDataMap
 JobDataMap DelegatingLocalityJobDetail.getJobDataMap()
           Get the JobDataMap that is associated with the Job.
 JobDataMap DelegatingLocalityTrigger.getJobDataMap()
          Get the JobDataMap that is associated with the Trigger.
 

Methods in org.quartz.locality with parameters of type JobDataMap
 void DelegatingLocalityTrigger.setJobDataMap(JobDataMap jobDataMap)
          
 

Uses of JobDataMap in org.quartz.simpl
 

Methods in org.quartz.simpl with parameters of type JobDataMap
protected  void PropertySettingJobFactory.setBeanProps(Object obj, JobDataMap data)
           
 



Copyright 2001-2011, Terracotta, Inc.