Class Trigger
- java.lang.Object
-
- com.netgrif.application.engine.importer.model.Trigger
-
public class Trigger extends java.lang.ObjectJava 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"> <choice minOccurs="0"> <element name="exact" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="delay" type="{http://www.w3.org/2001/XMLSchema}duration"/> </choice> <attribute name="type" type="{}triggerType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.xml.datatype.Durationdelayprotected javax.xml.datatype.XMLGregorianCalendarexactprotected TriggerTypetype
-
Constructor Summary
Constructors Constructor Description Trigger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.datatype.DurationgetDelay()Gets the value of the delay property.javax.xml.datatype.XMLGregorianCalendargetExact()Gets the value of the exact property.TriggerTypegetType()Gets the value of the type property.voidsetDelay(javax.xml.datatype.Duration value)Sets the value of the delay property.voidsetExact(javax.xml.datatype.XMLGregorianCalendar value)Sets the value of the exact property.voidsetType(TriggerType value)Sets the value of the type property.
-
-
-
Field Detail
-
exact
protected javax.xml.datatype.XMLGregorianCalendar exact
-
delay
protected javax.xml.datatype.Duration delay
-
type
protected TriggerType type
-
-
Method Detail
-
getExact
public javax.xml.datatype.XMLGregorianCalendar getExact()
Gets the value of the exact property.- Returns:
- possible object is
XMLGregorianCalendar
-
setExact
public void setExact(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the exact property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getDelay
public javax.xml.datatype.Duration getDelay()
Gets the value of the delay property.- Returns:
- possible object is
Duration
-
setDelay
public void setDelay(javax.xml.datatype.Duration value)
Sets the value of the delay property.- Parameters:
value- allowed object isDuration
-
getType
public TriggerType getType()
Gets the value of the type property.- Returns:
- possible object is
TriggerType
-
setType
public void setType(TriggerType value)
Sets the value of the type property.- Parameters:
value- allowed object isTriggerType
-
-