Class Timeout
- java.lang.Object
-
- de.hybris.platform.processengine.definition.xml.Timeout
-
public class Timeout extends java.lang.ObjectAllow to configure timeout for the wait nodeJava class for timeout complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="timeout"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="delay" use="required" type="{http://www.w3.org/2001/XMLSchema}duration" /> <attribute name="then" use="required" type="{http://www.hybris.de/xsd/processdefinition}name" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Timeout()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.datatype.DurationgetDelay()Gets the value of the delay property.java.lang.StringgetThen()Gets the value of the then property.voidsetDelay(javax.xml.datatype.Duration value)Sets the value of the delay property.voidsetThen(java.lang.String value)Sets the value of the then property.
-
-
-
Method Detail
-
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
-
getThen
public java.lang.String getThen()
Gets the value of the then property.- Returns:
- possible object is
String
-
setThen
public void setThen(java.lang.String value)
Sets the value of the then property.- Parameters:
value- allowed object isString
-
-