Class Choice
- java.lang.Object
-
- de.hybris.platform.processengine.definition.xml.Choice
-
public class Choice extends java.lang.ObjectJava class for choice complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="choice"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="id" use="required" type="{http://www.hybris.de/xsd/processdefinition}name" /> <attribute name="then" use="required" type="{http://www.hybris.de/xsd/processdefinition}name" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Choice()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Gets the value of the id property.java.lang.StringgetThen()Gets the value of the then property.voidsetId(java.lang.String value)Sets the value of the id property.voidsetThen(java.lang.String value)Sets the value of the then property.
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
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
-
-