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.jobs.ee.jms   
org.quartz.jobs.ee.mail   
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 Trigger.getJobDataMap()
           Get the JobDataMap that is associated with the Trigger.
 JobDataMap JobDetail.getJobDataMap()
           Get the JobDataMap that is associated with the Job.
 JobDataMap JobExecutionContext.getMergedJobDataMap()
           Get the convenience JobDataMap of this execution context.
 

Methods in org.quartz with parameters of type JobDataMap
 void Trigger.setJobDataMap(JobDataMap jobDataMap)
           Set the JobDataMap to be associated with the Trigger.
 void JobDetail.setJobDataMap(JobDataMap jobDataMap)
           Set the JobDataMap to be associated with the Job.
 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, JobDataMap data)
           Trigger the identified JobDetail (execute it now) - the generated trigger will be volatile.
 

Uses of JobDataMap in org.quartz.core
 

Methods in org.quartz.core with parameters of type JobDataMap
 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 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.
 

Uses of JobDataMap in org.quartz.core.jmx
 

Methods in org.quartz.core.jmx that return JobDataMap
static JobDataMap JobDataMapSupport.newJobDataMap(javax.management.openmbean.TabularData tabularData)
           
 

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

Uses of JobDataMap in org.quartz.impl
 

Methods in org.quartz.impl with parameters of type JobDataMap
 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, 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.
 

Uses of JobDataMap in org.quartz.impl.jdbcjobstore
 

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

Methods in org.quartz.impl.jdbcjobstore with parameters of type JobDataMap
protected  java.io.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.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 javax.naming.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  java.lang.String SendMailJob.getOptionalParm(JobDataMap data, java.lang.String property)
           
protected  java.lang.String SendMailJob.getRequiredParm(JobDataMap data, java.lang.String property, java.lang.String constantName)
           
protected  SendMailJob.MailInfo SendMailJob.populateMailInfo(JobDataMap data, SendMailJob.MailInfo mailInfo)
           
 

Uses of JobDataMap in org.quartz.simpl
 

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



Copyright 2001-2019, Terracotta, Inc.