<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="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">
<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="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."/>
<parametername="trigger"type="com.fr.third.v2.org.quartz.Trigger"description="The Trigger to schedule."/>
</operation>
</operation>
<operationname="scheduleJob"description="Schedule the given Trigger with the Job identified by the Trigger's settings."impact="ACTION"returnType="java.util.Date">
<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="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."/>
<parametername="triggerGroupName"type="java.lang.String"description="The group name of the Trigger to unschedule."/>
</operation>
</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">
<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="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."/>
<parametername="replace"type="boolean"description="Whether or not to replace an existing Job with the given one."/>
</operation>
</operation>
<operationname="deleteJob"description="Delete the identified Job from the Scheduler - and any associated Triggers."impact="ACTION"returnType="boolean">
<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="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."/>
<parametername="jobGroupName"type="java.lang.String"description="The group name of the Job to delete."/>
</operation>
</operation>
<operationname="triggerJob"description="Trigger the identified JobDetail (execute it now) - the generated trigger will be non-volatile."impact="ACTION"returnType="void">
<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="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="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."/>
<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>
</operation>
<operationname="triggerJobWithVolatileTrigger"description="Trigger the identified JobDetail (execute it now) - the generated trigger will be volatile."impact="ACTION"returnType="void">
<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="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="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."/>
<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">
<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="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."/>
<parametername="triggerGroupName"type="java.lang.String"description="The name of the trigger group to interrupt."/>
</operation>
</operation>
<operationname="pauseJob"description="Pause the JobDetail with the given name - by pausing all of its current Triggers."impact="ACTION"returnType="void">
<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="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."/>
<parametername="jobGroupName"type="java.lang.String"description="The group name of the Job to pause."/>
</operation>
</operation>
<operationname="pauseJobGroup"description="Pause all of the JobDetails in the given group - by pausing all of theirTriggers."impact="ACTION"returnType="void">
<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."/>
<parametername="triggerGroupName"type="java.lang.String"description="The group name of the Triggers to resume."/>
</operation>
</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="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">
<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."/>
<parametername="jobGroupName"type="java.lang.String"description="The job group name."/>
</operation>
</operation>
<operationname="getTriggersOfJob"description="Get all Triggers that are associated with the identified JobDetail."impact="INFO"returnType="[Lorg.quartz.Trigger;">
<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."/>
<parametername="triggerGroupName"type="java.lang.String"description="The trigger group name."/>
</operation>
</operation>
<operationname="getJobDetail"description="Get the JobDetail for the Job instance with the given name and group."impact="INFO"returnType="[Lorg.quartz.JobDetail;">
<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="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="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="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."/>
<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>
</operation>
<operationname="deleteCalendar"description="Delete the identified Calendar from the scheduler."impact="ACTION"returnType="boolean">
<operationname="deleteCalendar"description="Delete the identified Calendar from the scheduler."impact="ACTION"returnType="boolean">