Package org.apache.openejb.jee
Class FacesConfigFlowDefinitionFacesMethodCall
- java.lang.Object
-
- org.apache.openejb.jee.FacesConfigFlowDefinitionFacesMethodCall
-
public class FacesConfigFlowDefinitionFacesMethodCall extends Object
Invoke a method, passing parameters if necessary. The return from the method is used as the outcome for where to go next in the flow. If the method is a void method, the default outcome is used.
Java class for faces-config-flow-definition-faces-method-callType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="faces-config-flow-definition-faces-method-callType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="method" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-faces-method-call-methodType"/> <element name="default-outcome" type="{http://xmlns.jcp.org/xml/ns/javaee}string"/> <element name="parameter" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-flow-call-parameterType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdefaultOutcomeprotected FacesConfigFlowDefinitionFacesMethodCallMethodmethodprotected List<FacesConfigFlowDefinitionFlowCallParameter>parameter
-
Constructor Summary
Constructors Constructor Description FacesConfigFlowDefinitionFacesMethodCall()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDefaultOutcome()Gets the value of the defaultOutcome property.FacesConfigFlowDefinitionFacesMethodCallMethodgetMethod()Gets the value of the method property.List<FacesConfigFlowDefinitionFlowCallParameter>getParameter()Gets the value of the parameter property.voidsetDefaultOutcome(String value)Sets the value of the defaultOutcome property.voidsetMethod(FacesConfigFlowDefinitionFacesMethodCallMethod value)Sets the value of the method property.
-
-
-
Field Detail
-
method
protected FacesConfigFlowDefinitionFacesMethodCallMethod method
-
defaultOutcome
protected String defaultOutcome
-
parameter
protected List<FacesConfigFlowDefinitionFlowCallParameter> parameter
-
-
Method Detail
-
getMethod
public FacesConfigFlowDefinitionFacesMethodCallMethod getMethod()
Gets the value of the method property.- Returns:
- possible object is
FacesConfigFlowDefinitionFacesMethodCallMethod
-
setMethod
public void setMethod(FacesConfigFlowDefinitionFacesMethodCallMethod value)
Sets the value of the method property.- Parameters:
value- allowed object isFacesConfigFlowDefinitionFacesMethodCallMethod
-
getDefaultOutcome
public String getDefaultOutcome()
Gets the value of the defaultOutcome property.- Returns:
- possible object is
String
-
setDefaultOutcome
public void setDefaultOutcome(String value)
Sets the value of the defaultOutcome property.- Parameters:
value- allowed object isString
-
getParameter
public List<FacesConfigFlowDefinitionFlowCallParameter> getParameter()
Gets the value of the parameter 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 parameter property. For example, to add a new item, do as follows:getParameter().add(newItem);Objects of the following type(s) are allowed in the listFacesConfigFlowDefinitionFlowCallParameter
-
-