<operationname="getCurrentlyExecutingJobs"description="Get a list of JobExecutionContext objects that represent all currently executing Jobs in this scheduler instance."impact="INFO"returnType="java.util.List"/>
<operationname="scheduleJob"description="Add the given JobDetail to the Scheduler, and associate the given Trigger with it."impact="ACTION"returnType="java.util.Date">
<parametername="jobDetail"type="com.fr.third.v2.org.quartz.JobDetail"description="The JobDetail to schedule."/>
<parametername="trigger"type="com.fr.third.v2.org.quartz.Trigger"description="The Trigger to schedule."/>
</operation>
<operationname="scheduleJob"description="Schedule the given Trigger with the Job identified by the Trigger's settings."impact="ACTION"returnType="java.util.Date">
<parametername="triggerName"type="java.lang.String"description="The name of the Trigger to unschedule."/>
<parametername="triggerGroupName"type="java.lang.String"description="The group name of the Trigger to unschedule."/>
</operation>
<operationname="rescheduleJob"description="Remove (delete) the Trigger with the given name, and store the new given one - which must be associated with the same job (the new trigger must have the job name and group specified) - however, the new trigger need not have the same name as the old trigger."impact="ACTION"returnType="java.util.Date">
<parametername="jobDetail"type="com.fr.third.v2.org.quartz.JobDetail"description="The JobDetail to add."/>
<parametername="replace"type="boolean"description="Whether or not to replace an existing Job with the given one."/>
</operation>
<operationname="deleteJob"description="Delete the identified Job from the Scheduler - and any associated Triggers."impact="ACTION"returnType="boolean">
<parametername="jobName"type="java.lang.String"description="The name of the Job to delete."/>
<parametername="jobGroupName"type="java.lang.String"description="The group name of the Job to delete."/>
</operation>
<operationname="triggerJob"description="Trigger the identified JobDetail (execute it now) - the generated trigger will be non-volatile."impact="ACTION"returnType="void">
<parametername="jobName"type="java.lang.String"description="The name of the Job to trigger."/>
<parametername="jobGroupName"type="java.lang.String"description="The group name of the Job to trigger."/>
<parametername="jobDataMap"type="com.fr.third.v2.org.quartz.JobDataMap"description="The (possibly null) JobDataMap to be associated with the trigger that fires the job immediately."/>
</operation>
<operationname="triggerJobWithVolatileTrigger"description="Trigger the identified JobDetail (execute it now) - the generated trigger will be volatile."impact="ACTION"returnType="void">
<parametername="jobName"type="java.lang.String"description="The name of the Job to trigger."/>
<parametername="jobGroupName"type="java.lang.String"description="The group name of the Job to trigger."/>
<parametername="jobDataMap"type="com.fr.third.v2.org.quartz.JobDataMap"description="The (possibly null) JobDataMap to be associated with the trigger that fires the job immediately."/>
@ -76,109 +76,109 @@
<operationname="interrupt"description="Request the interruption, within this scheduler instance, of all currently executing instances of the identified Job, which must be an implementor of the InterruptableJob interface."impact="ACTION"returnType="boolean">
<parametername="triggerName"type="java.lang.String"description="The name of the trigger to interrupt."/>
<parametername="triggerGroupName"type="java.lang.String"description="The name of the trigger group to interrupt."/>
</operation>
<operationname="pauseJob"description="Pause the JobDetail with the given name - by pausing all of its current Triggers."impact="ACTION"returnType="void">
<parametername="jobName"type="java.lang.String"description="The name of the Job to pause."/>
<parametername="jobGroupName"type="java.lang.String"description="The group name of the Job to pause."/>
</operation>
<operationname="pauseJobGroup"description="Pause all of the JobDetails in the given group - by pausing all of theirTriggers."impact="ACTION"returnType="void">
<parametername="triggerGroupName"type="java.lang.String"description="The group name of the Triggers to resume."/>
</operation>
<operationname="pauseAll"description="Pause all triggers - similar to calling pauseTriggerGroup(group) on every group, however, after using this method resumeAll() must be called to clear the scheduler's state of 'remembering' that all new triggers will be paused as they are added."impact="ACTION"returnType="void">
<operationname="resumeAll"description="Resume (un-pause) all triggers - similar to calling resumeTriggerGroup(group) on every group."impact="ACTION"returnType="void">
<parametername="jobGroupName"type="java.lang.String"description="The job group name."/>
</operation>
<operationname="getTriggersOfJob"description="Get all Triggers that are associated with the identified JobDetail."impact="INFO"returnType="[Lorg.quartz.Trigger;">
<parametername="triggerGroupName"type="java.lang.String"description="The trigger group name."/>
</operation>
<operationname="getJobDetail"description="Get the JobDetail for the Job instance with the given name and group."impact="INFO"returnType="[Lorg.quartz.JobDetail;">
<parametername="calendarName"type="java.lang.String"description="Name of the calendar to add."/>
<parametername="calendar"type="com.fr.third.v2.org.quartz.Calendar"description="The Calendar instance to add."/>
<parametername="replace"type="boolean"description="Whether to allow replacing an existing Calendar instance."/>
<parametername="updateTriggers"type="boolean"description="Whether or not to update existing triggers that referenced the already existing calendar so that they are 'correct' based on the new trigger."/>
</operation>
<operationname="deleteCalendar"description="Delete the identified Calendar from the scheduler."impact="ACTION"returnType="boolean">