Package jakarta.faces.flow.builder
Class ReturnBuilder
- java.lang.Object
-
- jakarta.faces.flow.builder.ReturnBuilder
-
- All Implemented Interfaces:
NodeBuilder
- Direct Known Subclasses:
ReturnBuilderImpl
public abstract class ReturnBuilder extends Object implements NodeBuilder
Create a return node in the current
Flow.- Since:
- 2.2
-
-
Constructor Summary
Constructors Constructor Description ReturnBuilder()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ReturnBuilderfromOutcome(jakarta.el.ValueExpression outcome)Set the outcome of the current return node.abstract ReturnBuilderfromOutcome(String outcome)Set the outcome of the current return node.abstract ReturnBuildermarkAsStartNode()Mark this node as the start node in the flow.
-
-
-
Method Detail
-
fromOutcome
public abstract ReturnBuilder fromOutcome(String outcome)
Set the outcome of the current return node.
- Parameters:
outcome- AValueExpressionStringStringthat will be the outcome of the return.- Returns:
- the builder instance
- Throws:
NullPointerException- if any of the parameters arenull- Since:
- 2.2
-
fromOutcome
public abstract ReturnBuilder fromOutcome(jakarta.el.ValueExpression outcome)
Set the outcome of the current return node.
- Parameters:
outcome- AValueExpressionStringthat will be the outcome of the return.- Returns:
- the builder instance
- Throws:
NullPointerException- if any of the parameters arenull- Since:
- 2.2
-
markAsStartNode
public abstract ReturnBuilder markAsStartNode()
Description copied from interface:NodeBuilderMark this node as the start node in the flow. Any other node that had been marked as the start node will no longer be the start node.
- Specified by:
markAsStartNodein interfaceNodeBuilder- Returns:
- the builder instance
-
-