Package jakarta.faces.flow
Class ReturnNode
- java.lang.Object
- 
- jakarta.faces.flow.FlowNode
- 
- jakarta.faces.flow.ReturnNode
 
 
- 
 public abstract class ReturnNode extends FlowNode 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 SummaryConstructors Constructor Description ReturnNode()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract StringgetFromOutcome(FacesContext context)Return thefromOutcometo be used when control passes to this return node.
 
- 
- 
- 
Method Detail- 
getFromOutcomepublic abstract String getFromOutcome(FacesContext context) Return the fromOutcometo be used when control passes to this return node.- Parameters:
- context- the- FacesContextfor this request.
- Returns:
- the fromOutcome
- Throws:
- NullPointerException- if- contextis- null.
- Since:
- 2.2
 
 
- 
 
-