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
Modifier and Type Method Description List<Parameter>
_getParameters()
String
getId()
jakarta.el.MethodExpression
getMethodExpression()
Return theMethodExpression
to be invoked to when control passes to this node.jakarta.el.ValueExpression
getOutcome()
Return theoutcome
to be used in the event of anull
return from the method.List<Parameter>
getParameters()
Return the parameters to be passed to the method.void
setMethodExpression(jakarta.el.MethodExpression methodExpression)
void
setOutcome(jakarta.el.ValueExpression outcome)
-
Constructor Details
-
Method Details
-
getId
-
getParameters
Description copied from class:MethodCallNode
Return the parameters to be passed to the method.
- Specified by:
getParameters
in classMethodCallNode
- Returns:
- the parameters to be passed to the method
-
_getParameters
-
getMethodExpression
public jakarta.el.MethodExpression getMethodExpression()Description copied from class:MethodCallNode
Return the
MethodExpression
to be invoked to when control passes to this node.- Specified by:
getMethodExpression
in classMethodCallNode
- Returns:
- the
MethodExpression
to 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:MethodCallNode
Return the
outcome
to be used in the event of anull
return from the method.- Specified by:
getOutcome
in classMethodCallNode
- Returns:
- the
outcome
-
setOutcome
public void setOutcome(jakarta.el.ValueExpression outcome)
-