Package org.apache.batchee.jaxb
Class Split
- java.lang.Object
-
- org.apache.batchee.jaxb.Split
-
- All Implemented Interfaces:
ExecutionElement
public class Split extends Object implements ExecutionElement
Java class for Split complex type.The following schema fragment specifies the expected content contained within this class.
<complexType name="Split"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="flow" type="{http://xmlns.jcp.org/xml/ns/javaee}Flow" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> <attribute name="next" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Split()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Flow>
getFlows()
Gets the value of the flows property.String
getId()
Gets the value of the id property.String
getNextFromAttribute()
Gets the value of the nextFromAttribute property.List<TransitionElement>
getTransitionElements()
void
setId(String value)
Sets the value of the id property.void
setNextFromAttribute(String value)
Sets the value of the nextFromAttribute property.
-
-
-
Method Detail
-
getFlows
public List<Flow> getFlows()
Gets the value of the flows property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the flows property.For example, to add a new item, do as follows:
getFlows().add(newItem);
Objects of the following type(s) are allowed in the list
Flow
-
getId
public String getId()
Gets the value of the id property.- Specified by:
getId
in interfaceExecutionElement
- Returns:
- possible object is
String
-
getTransitionElements
public List<TransitionElement> getTransitionElements()
- Specified by:
getTransitionElements
in interfaceExecutionElement
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value
- allowed object isString
-
getNextFromAttribute
public String getNextFromAttribute()
Gets the value of the nextFromAttribute property.- Returns:
- possible object is
String
-
-