com.netgrif.application.engine.importer.model.Trigger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.importer.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.Duration;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* 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">
* <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>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "trigger", propOrder = {
"exact",
"delay"
})
public class Trigger {
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar exact;
protected Duration delay;
@XmlAttribute(name = "type")
protected TriggerType type;
/**
* Gets the value of the exact property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExact() {
return exact;
}
/**
* Sets the value of the exact property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setExact(XMLGregorianCalendar value) {
this.exact = value;
}
/**
* Gets the value of the delay property.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getDelay() {
return delay;
}
/**
* Sets the value of the delay property.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setDelay(Duration value) {
this.delay = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link TriggerType }
*
*/
public TriggerType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link TriggerType }
*
*/
public void setType(TriggerType value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy