Package org.apache.openejb.jee
Class FacesConfigFlowDefinitionFlowCall
- java.lang.Object
-
- org.apache.openejb.jee.FacesConfigFlowDefinitionFlowCall
-
public class FacesConfigFlowDefinitionFlowCall extends Object
Define a call node in a flow graph.
This element must contain exactly one
<flow-reference><flow-id>Java class for faces-config-flow-definition-flow-callType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="faces-config-flow-definition-flow-callType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="flow-reference" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-flow-call-flow-referenceType"/> <element name="outbound-parameter" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-flow-call-outbound-parameterType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>-
-
Field Summary
Fields Modifier and Type Field Description protected FacesConfigFlowDefinitionFlowCallFlowReferenceflowReferenceprotected Stringidprotected List<FacesConfigFlowDefinitionFlowCallOutboundParameter>outboundParameter
-
Constructor Summary
Constructors Constructor Description FacesConfigFlowDefinitionFlowCall()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FacesConfigFlowDefinitionFlowCallFlowReferencegetFlowReference()Gets the value of the flowReference property.StringgetId()Gets the value of the id property.List<FacesConfigFlowDefinitionFlowCallOutboundParameter>getOutboundParameter()Gets the value of the outboundParameter property.voidsetFlowReference(FacesConfigFlowDefinitionFlowCallFlowReference value)Sets the value of the flowReference property.voidsetId(String value)Sets the value of the id property.
-
-
-
Field Detail
-
flowReference
protected FacesConfigFlowDefinitionFlowCallFlowReference flowReference
-
outboundParameter
protected List<FacesConfigFlowDefinitionFlowCallOutboundParameter> outboundParameter
-
id
protected String id
-
-
Method Detail
-
getFlowReference
public FacesConfigFlowDefinitionFlowCallFlowReference getFlowReference()
Gets the value of the flowReference property.- Returns:
- possible object is
FacesConfigFlowDefinitionFlowCallFlowReference
-
setFlowReference
public void setFlowReference(FacesConfigFlowDefinitionFlowCallFlowReference value)
Sets the value of the flowReference property.- Parameters:
value- allowed object isFacesConfigFlowDefinitionFlowCallFlowReference
-
getOutboundParameter
public List<FacesConfigFlowDefinitionFlowCallOutboundParameter> getOutboundParameter()
Gets the value of the outboundParameter 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 asetmethod for the outboundParameter property. For example, to add a new item, do as follows:getOutboundParameter().add(newItem);Objects of the following type(s) are allowed in the listFacesConfigFlowDefinitionFlowCallOutboundParameter
-
-
-