All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.quartz.TriggerBuilder Maven / Gradle / Ivy

There is a newer version: 2.5.0-rc1
Show newest version
/*
 * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 
 * use this file except in compliance with the License. You may obtain a copy 
 * of the License at 
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0 
 *   
 * Unless required by applicable law or agreed to in writing, software 
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 
 * License for the specific language governing permissions and limitations 
 * under the License.
 * 
 */

package org.quartz;

import java.util.Date;

import org.quartz.spi.MutableTrigger;
import org.quartz.utils.Key;

/**
 * TriggerBuilder is used to instantiate {@link Trigger}s.
 * 
 * 

The builder will always try to keep itself in a valid state, with * reasonable defaults set for calling build() at any point. For instance * if you do not invoke withSchedule(..) method, a default schedule * of firing once immediately will be used. As another example, if you * do not invoked withIdentity(..) a trigger name will be generated * for you.

* *

Quartz provides a builder-style API for constructing scheduling-related * entities via a Domain-Specific Language (DSL). The DSL can best be * utilized through the usage of static imports of the methods on the classes * TriggerBuilder, JobBuilder, * DateBuilder, JobKey, TriggerKey * and the various ScheduleBuilder implementations.

* *

Client code can then use the DSL to write code such as this:

*
 *         JobDetail job = newJob(MyJob.class)
 *             .withIdentity("myJob")
 *             .build();
 *             
 *         Trigger trigger = newTrigger() 
 *             .withIdentity(triggerKey("myTrigger", "myTriggerGroup"))
 *             .withSchedule(simpleSchedule()
 *                 .withIntervalInHours(1)
 *                 .repeatForever())
 *             .startAt(futureDate(10, MINUTES))
 *             .build();
 *         
 *         scheduler.scheduleJob(job, trigger);
 * 
 *  
 * @see JobBuilder
 * @see ScheduleBuilder
 * @see DateBuilder 
 * @see Trigger
 */
public class TriggerBuilder {

    private TriggerKey key;
    private String description;
    private Date startTime = new Date();
    private Date endTime;
    private int priority = Trigger.DEFAULT_PRIORITY;
    private String calendarName;
    private JobKey jobKey;
    private JobDataMap jobDataMap = new JobDataMap();
    
    private ScheduleBuilder scheduleBuilder = null;
    
    private TriggerBuilder() {
        
    }
    
    /**
     * Create a new TriggerBuilder with which to define a 
     * specification for a Trigger.
     * 
     * @return the new TriggerBuilder
     */
    public static TriggerBuilder newTrigger() {
        return new TriggerBuilder();
    }
    
    /**
     * Produce the Trigger.
     * 
     * @return a Trigger that meets the specifications of the builder.
     */
    @SuppressWarnings("unchecked")
    public T build() {

        if(scheduleBuilder == null)
            scheduleBuilder = SimpleScheduleBuilder.simpleSchedule();
        MutableTrigger trig = scheduleBuilder.build();
        
        trig.setCalendarName(calendarName);
        trig.setDescription(description);
        trig.setStartTime(startTime);
        trig.setEndTime(endTime);
        if(key == null)
            key = new TriggerKey(Key.createUniqueName(null), null);
        trig.setKey(key); 
        if(jobKey != null)
            trig.setJobKey(jobKey);
        trig.setPriority(priority);
        
        if(!jobDataMap.isEmpty())
            trig.setJobDataMap(jobDataMap);
        
        return (T) trig;
    }

    /**
     * Use a TriggerKey with the given name and default group to
     * identify the Trigger.
     * 
     * 

If none of the 'withIdentity' methods are set on the TriggerBuilder, * then a random, unique TriggerKey will be generated.

* * @param name the name element for the Trigger's TriggerKey * @return the updated TriggerBuilder * @see TriggerKey * @see Trigger#getKey() */ public TriggerBuilder withIdentity(String name) { key = new TriggerKey(name, null); return this; } /** * Use a TriggerKey with the given name and group to * identify the Trigger. * *

If none of the 'withIdentity' methods are set on the TriggerBuilder, * then a random, unique TriggerKey will be generated.

* * @param name the name element for the Trigger's TriggerKey * @param group the group element for the Trigger's TriggerKey * @return the updated TriggerBuilder * @see TriggerKey * @see Trigger#getKey() */ public TriggerBuilder withIdentity(String name, String group) { key = new TriggerKey(name, group); return this; } /** * Use the given TriggerKey to identify the Trigger. * *

If none of the 'withIdentity' methods are set on the TriggerBuilder, * then a random, unique TriggerKey will be generated.

* * @param triggerKey the TriggerKey for the Trigger to be built * @return the updated TriggerBuilder * @see TriggerKey * @see Trigger#getKey() */ public TriggerBuilder withIdentity(TriggerKey triggerKey) { this.key = triggerKey; return this; } /** * Set the given (human-meaningful) description of the Trigger. * * @param triggerDescription the description for the Trigger * @return the updated TriggerBuilder * @see Trigger#getDescription() */ public TriggerBuilder withDescription(String triggerDescription) { this.description = triggerDescription; return this; } /** * Set the Trigger's priority. When more than one Trigger have the same * fire time, the scheduler will fire the one with the highest priority * first. * * @param triggerPriority the priority for the Trigger * @return the updated TriggerBuilder * @see Trigger#DEFAULT_PRIORITY * @see Trigger#getPriority() */ public TriggerBuilder withPriority(int triggerPriority) { this.priority = triggerPriority; return this; } /** * Set the name of the {@link Calendar} that should be applied to this * Trigger's schedule. * * @param calName the name of the Calendar to reference. * @return the updated TriggerBuilder * @see Calendar * @see Trigger#getCalendarName() */ public TriggerBuilder modifiedByCalendar(String calName) { this.calendarName = calName; return this; } /** * Set the time the Trigger should start at - the trigger may or may * not fire at this time - depending upon the schedule configured for * the Trigger. However the Trigger will NOT fire before this time, * regardless of the Trigger's schedule. * * @param triggerStartTime the start time for the Trigger. * @return the updated TriggerBuilder * @see Trigger#getStartTime() * @see DateBuilder */ public TriggerBuilder startAt(Date triggerStartTime) { this.startTime = triggerStartTime; return this; } /** * Set the time the Trigger should start at to the current moment - * the trigger may or may not fire at this time - depending upon the * schedule configured for the Trigger. * * @return the updated TriggerBuilder * @see Trigger#getStartTime() */ public TriggerBuilder startNow() { this.startTime = new Date(); return this; } /** * Set the time at which the Trigger will no longer fire - even if it's * schedule has remaining repeats. * * @param triggerEndTime the end time for the Trigger. If null, the end time is indefinite. * @return the updated TriggerBuilder * @see Trigger#getEndTime() * @see DateBuilder */ public TriggerBuilder endAt(Date triggerEndTime) { this.endTime = triggerEndTime; return this; } /** * Set the {@link ScheduleBuilder} that will be used to define the * Trigger's schedule. * *

The particular SchedulerBuilder used will dictate * the concrete type of Trigger that is produced by the TriggerBuilder.

* * @param schedBuilder the SchedulerBuilder to use. * @return the updated TriggerBuilder * @see ScheduleBuilder * @see SimpleScheduleBuilder * @see CronScheduleBuilder * @see CalendarIntervalScheduleBuilder */ @SuppressWarnings("unchecked") public TriggerBuilder withSchedule(ScheduleBuilder schedBuilder) { this.scheduleBuilder = schedBuilder; return (TriggerBuilder) this; } /** * Set the identity of the Job which should be fired by the produced * Trigger. * * @param keyOfJobToFire the identity of the Job to fire. * @return the updated TriggerBuilder * @see Trigger#getJobKey() */ public TriggerBuilder forJob(JobKey keyOfJobToFire) { this.jobKey = keyOfJobToFire; return this; } /** * Set the identity of the Job which should be fired by the produced * Trigger - a JobKey will be produced with the given * name and default group. * * @param jobName the name of the job (in default group) to fire. * @return the updated TriggerBuilder * @see Trigger#getJobKey() */ public TriggerBuilder forJob(String jobName) { this.jobKey = new JobKey(jobName, null); return this; } /** * Set the identity of the Job which should be fired by the produced * Trigger - a JobKey will be produced with the given * name and group. * * @param jobName the name of the job to fire. * @param jobGroup the group of the job to fire. * @return the updated TriggerBuilder * @see Trigger#getJobKey() */ public TriggerBuilder forJob(String jobName, String jobGroup) { this.jobKey = new JobKey(jobName, jobGroup); return this; } /** * Set the identity of the Job which should be fired by the produced * Trigger, by extracting the JobKey from the given job. * * @param jobDetail the Job to fire. * @return the updated TriggerBuilder * @see Trigger#getJobKey() */ public TriggerBuilder forJob(JobDetail jobDetail) { JobKey k = jobDetail.getKey(); if(k.getName() == null) throw new IllegalArgumentException("The given job has not yet had a name assigned to it."); this.jobKey = k; return this; } /** * Add the given key-value pair to the Trigger's {@link JobDataMap}. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(String dataKey, String value) { jobDataMap.put(dataKey, value); return this; } /** * Add the given key-value pair to the Trigger's {@link JobDataMap}. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(String dataKey, Integer value) { jobDataMap.put(dataKey, value); return this; } /** * Add the given key-value pair to the Trigger's {@link JobDataMap}. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(String dataKey, Long value) { jobDataMap.put(dataKey, value); return this; } /** * Add the given key-value pair to the Trigger's {@link JobDataMap}. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(String dataKey, Float value) { jobDataMap.put(dataKey, value); return this; } /** * Add the given key-value pair to the Trigger's {@link JobDataMap}. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(String dataKey, Double value) { jobDataMap.put(dataKey, value); return this; } /** * Add the given key-value pair to the Trigger's {@link JobDataMap}. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(String dataKey, Boolean value) { jobDataMap.put(dataKey, value); return this; } /** * Set the Trigger's {@link JobDataMap}, adding any values to it * that were already set on this TriggerBuilder using any of the * other 'usingJobData' methods. * * @return the updated TriggerBuilder * @see Trigger#getJobDataMap() */ public TriggerBuilder usingJobData(JobDataMap newJobDataMap) { // add any existing data to this new map for(String dataKey: jobDataMap.keySet()) { newJobDataMap.put(dataKey, jobDataMap.get(dataKey)); } jobDataMap = newJobDataMap; // set new map as the map to use return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy