Package com.sun.faces.flow
Class MethodCallNodeImpl
- java.lang.Object
-
- jakarta.faces.flow.FlowNode
-
- jakarta.faces.flow.MethodCallNode
-
- com.sun.faces.flow.MethodCallNodeImpl
-
- All Implemented Interfaces:
Serializable
public class MethodCallNodeImpl extends MethodCallNode implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MethodCallNodeImpl(FacesContext context, String id, String methodExpressionString, String defaultOutcomeString, List<Parameter> parametersFromConfig)MethodCallNodeImpl(String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Parameter>_getParameters()StringgetId()jakarta.el.MethodExpressiongetMethodExpression()Return theMethodExpressionto be invoked to when control passes to this node.jakarta.el.ValueExpressiongetOutcome()Return theoutcometo be used in the event of anullreturn from the method.List<Parameter>getParameters()Return the parameters to be passed to the method.voidsetMethodExpression(jakarta.el.MethodExpression methodExpression)voidsetOutcome(jakarta.el.ValueExpression outcome)
-
-
-
Method Detail
-
getParameters
public List<Parameter> getParameters()
Description copied from class:MethodCallNodeReturn the parameters to be passed to the method.
- Specified by:
getParametersin classMethodCallNode- Returns:
- the parameters to be passed to the method
-
getMethodExpression
public jakarta.el.MethodExpression getMethodExpression()
Description copied from class:MethodCallNodeReturn the
MethodExpressionto be invoked to when control passes to this node.- Specified by:
getMethodExpressionin classMethodCallNode- Returns:
- the
MethodExpressionto be invoked to when control passes to this node
-
setMethodExpression
public void setMethodExpression(jakarta.el.MethodExpression methodExpression)
-
getOutcome
public jakarta.el.ValueExpression getOutcome()
Description copied from class:MethodCallNodeReturn the
outcometo be used in the event of anullreturn from the method.- Specified by:
getOutcomein classMethodCallNode- Returns:
- the
outcome
-
setOutcome
public void setOutcome(jakarta.el.ValueExpression outcome)
-
-