Package jakarta.faces.flow
Class ReturnNode
java.lang.Object
jakarta.faces.flow.FlowNode
jakarta.faces.flow.ReturnNode
Represents a return node in the flow graph. When control passes to a return node, its getFromOutcome(jakarta.faces.context.FacesContext)
is
called to determine the next node in the flow graph.
- Since:
- 2.2
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract String
getFromOutcome
(FacesContext context) Return thefromOutcome
to be used when control passes to this return node.
-
Constructor Details
-
ReturnNode
public ReturnNode()
-
-
Method Details
-
getFromOutcome
Return the
fromOutcome
to be used when control passes to this return node.- Parameters:
context
- theFacesContext
for this request.- Returns:
- the
fromOutcome
- Throws:
NullPointerException
- ifcontext
isnull
.- Since:
- 2.2
-