com.quartzdesk.service.types.v1_0.scheduler.quartz
Class Trigger

java.lang.Object
  extended by com.quartzdesk.service.types.v1_0.scheduler.quartz.Trigger
Direct Known Subclasses:
CalendarIntervalTrigger, CronTrigger, DailyTimeIntervalTrigger, DateIntervalTrigger, NthIncludedDayTrigger, SimpleTrigger

public class Trigger
extends Object

Java class for Trigger complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Trigger">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="group" type="{http://service.quartzdesk.com/types/v1_0/scheduler/quartz}TriggerGroup"/>
         <element name="state" type="{http://service.quartzdesk.com/types/v1_0/scheduler/quartz}TriggerState"/>
         <element name="jobName" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="jobGroup" type="{http://service.quartzdesk.com/types/v1_0/scheduler/quartz}JobGroup"/>
         <element name="calendar" type="{http://service.quartzdesk.com/types/v1_0/scheduler/quartz}Calendar" minOccurs="0"/>
         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="priority" type="{http://www.w3.org/2001/XMLSchema}int"/>
         <element name="misfireInstruction" type="{http://www.w3.org/2001/XMLSchema}int"/>
         <element name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <element name="endTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <element name="previousFireTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <element name="nextFireTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <element name="finalFireTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <element name="jobDataMap" type="{http://service.quartzdesk.com/types/v1_0/scheduler/quartz}JobDataMap"/>
         <element name="volatility" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  Calendar calendar
           
protected  String description
           
protected  Calendar endTime
           
protected  Calendar finalFireTime
           
protected  TriggerGroup group
           
protected  JobDataMap jobDataMap
           
protected  JobGroup jobGroup
           
protected  String jobName
           
protected  Integer misfireInstruction
           
protected  String name
           
protected  Calendar nextFireTime
           
protected  Calendar previousFireTime
           
protected  Integer priority
           
protected  Calendar startTime
           
protected  TriggerState state
           
protected  Boolean volatility
           
 
Constructor Summary
Trigger()
           
 
Method Summary
 Calendar getCalendar()
          Gets the value of the calendar property.
 String getDescription()
          Gets the value of the description property.
 Calendar getEndTime()
          Gets the value of the endTime property.
 Calendar getFinalFireTime()
          Gets the value of the finalFireTime property.
 TriggerGroup getGroup()
          Gets the value of the group property.
 JobDataMap getJobDataMap()
          Gets the value of the jobDataMap property.
 JobGroup getJobGroup()
          Gets the value of the jobGroup property.
 String getJobName()
          Gets the value of the jobName property.
 Integer getMisfireInstruction()
          Gets the value of the misfireInstruction property.
 String getName()
          Gets the value of the name property.
 Calendar getNextFireTime()
          Gets the value of the nextFireTime property.
 Calendar getPreviousFireTime()
          Gets the value of the previousFireTime property.
 Integer getPriority()
          Gets the value of the priority property.
 Calendar getStartTime()
          Gets the value of the startTime property.
 TriggerState getState()
          Gets the value of the state property.
 Boolean getVolatility()
           
 Boolean isVolatility()
          Gets the value of the volatility property.
 void setCalendar(Calendar value)
          Sets the value of the calendar property.
 void setDescription(String value)
          Sets the value of the description property.
 void setEndTime(Calendar value)
          Sets the value of the endTime property.
 void setFinalFireTime(Calendar value)
          Sets the value of the finalFireTime property.
 void setGroup(TriggerGroup value)
          Sets the value of the group property.
 void setJobDataMap(JobDataMap value)
          Sets the value of the jobDataMap property.
 void setJobGroup(JobGroup value)
          Sets the value of the jobGroup property.
 void setJobName(String value)
          Sets the value of the jobName property.
 void setMisfireInstruction(Integer value)
          Sets the value of the misfireInstruction property.
 void setName(String value)
          Sets the value of the name property.
 void setNextFireTime(Calendar value)
          Sets the value of the nextFireTime property.
 void setPreviousFireTime(Calendar value)
          Sets the value of the previousFireTime property.
 void setPriority(Integer value)
          Sets the value of the priority property.
 void setStartTime(Calendar value)
          Sets the value of the startTime property.
 void setState(TriggerState value)
          Sets the value of the state property.
 void setVolatility(Boolean value)
          Sets the value of the volatility property.
 Trigger withCalendar(Calendar value)
           
 Trigger withDescription(String value)
           
 Trigger withEndTime(Calendar value)
           
 Trigger withFinalFireTime(Calendar value)
           
 Trigger withGroup(TriggerGroup value)
           
 Trigger withJobDataMap(JobDataMap value)
           
 Trigger withJobGroup(JobGroup value)
           
 Trigger withJobName(String value)
           
 Trigger withMisfireInstruction(Integer value)
           
 Trigger withName(String value)
           
 Trigger withNextFireTime(Calendar value)
           
 Trigger withPreviousFireTime(Calendar value)
           
 Trigger withPriority(Integer value)
           
 Trigger withStartTime(Calendar value)
           
 Trigger withState(TriggerState value)
           
 Trigger withVolatility(Boolean value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected String name

group

protected TriggerGroup group

state

protected TriggerState state

jobName

protected String jobName

jobGroup

protected JobGroup jobGroup

calendar

protected Calendar calendar

description

protected String description

priority

protected Integer priority

misfireInstruction

protected Integer misfireInstruction

startTime

protected Calendar startTime

endTime

protected Calendar endTime

previousFireTime

protected Calendar previousFireTime

nextFireTime

protected Calendar nextFireTime

finalFireTime

protected Calendar finalFireTime

jobDataMap

protected JobDataMap jobDataMap

volatility

protected Boolean volatility
Constructor Detail

Trigger

public Trigger()
Method Detail

getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getGroup

public TriggerGroup getGroup()
Gets the value of the group property.

Returns:
possible object is TriggerGroup

setGroup

public void setGroup(TriggerGroup value)
Sets the value of the group property.

Parameters:
value - allowed object is TriggerGroup

getState

public TriggerState getState()
Gets the value of the state property.

Returns:
possible object is TriggerState

setState

public void setState(TriggerState value)
Sets the value of the state property.

Parameters:
value - allowed object is TriggerState

getJobName

public String getJobName()
Gets the value of the jobName property.

Returns:
possible object is String

setJobName

public void setJobName(String value)
Sets the value of the jobName property.

Parameters:
value - allowed object is String

getJobGroup

public JobGroup getJobGroup()
Gets the value of the jobGroup property.

Returns:
possible object is JobGroup

setJobGroup

public void setJobGroup(JobGroup value)
Sets the value of the jobGroup property.

Parameters:
value - allowed object is JobGroup

getCalendar

public Calendar getCalendar()
Gets the value of the calendar property.

Returns:
possible object is Calendar

setCalendar

public void setCalendar(Calendar value)
Sets the value of the calendar property.

Parameters:
value - allowed object is Calendar

getDescription

public String getDescription()
Gets the value of the description property.

Returns:
possible object is String

setDescription

public void setDescription(String value)
Sets the value of the description property.

Parameters:
value - allowed object is String

getPriority

public Integer getPriority()
Gets the value of the priority property.

Returns:
possible object is String

setPriority

public void setPriority(Integer value)
Sets the value of the priority property.

Parameters:
value - allowed object is String

getMisfireInstruction

public Integer getMisfireInstruction()
Gets the value of the misfireInstruction property.

Returns:
possible object is String

setMisfireInstruction

public void setMisfireInstruction(Integer value)
Sets the value of the misfireInstruction property.

Parameters:
value - allowed object is String

getStartTime

public Calendar getStartTime()
Gets the value of the startTime property.

Returns:
possible object is String

setStartTime

public void setStartTime(Calendar value)
Sets the value of the startTime property.

Parameters:
value - allowed object is String

getEndTime

public Calendar getEndTime()
Gets the value of the endTime property.

Returns:
possible object is String

setEndTime

public void setEndTime(Calendar value)
Sets the value of the endTime property.

Parameters:
value - allowed object is String

getPreviousFireTime

public Calendar getPreviousFireTime()
Gets the value of the previousFireTime property.

Returns:
possible object is String

setPreviousFireTime

public void setPreviousFireTime(Calendar value)
Sets the value of the previousFireTime property.

Parameters:
value - allowed object is String

getNextFireTime

public Calendar getNextFireTime()
Gets the value of the nextFireTime property.

Returns:
possible object is String

setNextFireTime

public void setNextFireTime(Calendar value)
Sets the value of the nextFireTime property.

Parameters:
value - allowed object is String

getFinalFireTime

public Calendar getFinalFireTime()
Gets the value of the finalFireTime property.

Returns:
possible object is String

setFinalFireTime

public void setFinalFireTime(Calendar value)
Sets the value of the finalFireTime property.

Parameters:
value - allowed object is String

getJobDataMap

public JobDataMap getJobDataMap()
Gets the value of the jobDataMap property.

Returns:
possible object is JobDataMap

setJobDataMap

public void setJobDataMap(JobDataMap value)
Sets the value of the jobDataMap property.

Parameters:
value - allowed object is JobDataMap

isVolatility

public Boolean isVolatility()
Gets the value of the volatility property.

Returns:
possible object is String

setVolatility

public void setVolatility(Boolean value)
Sets the value of the volatility property.

Parameters:
value - allowed object is String

getVolatility

public Boolean getVolatility()

withName

public Trigger withName(String value)

withGroup

public Trigger withGroup(TriggerGroup value)

withState

public Trigger withState(TriggerState value)

withJobName

public Trigger withJobName(String value)

withJobGroup

public Trigger withJobGroup(JobGroup value)

withCalendar

public Trigger withCalendar(Calendar value)

withDescription

public Trigger withDescription(String value)

withPriority

public Trigger withPriority(Integer value)

withMisfireInstruction

public Trigger withMisfireInstruction(Integer value)

withStartTime

public Trigger withStartTime(Calendar value)

withEndTime

public Trigger withEndTime(Calendar value)

withPreviousFireTime

public Trigger withPreviousFireTime(Calendar value)

withNextFireTime

public Trigger withNextFireTime(Calendar value)

withFinalFireTime

public Trigger withFinalFireTime(Calendar value)

withJobDataMap

public Trigger withJobDataMap(JobDataMap value)

withVolatility

public Trigger withVolatility(Boolean value)


Copyright © 2013–2017 QuartzDesk.com. All rights reserved.