Package com.sun.faces.flow.builder
Class NavigationCaseBuilderImpl
- java.lang.Object
-
- jakarta.faces.flow.builder.NavigationCaseBuilder
-
- com.sun.faces.flow.builder.NavigationCaseBuilderImpl
-
public class NavigationCaseBuilderImpl extends NavigationCaseBuilder
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class jakarta.faces.flow.builder.NavigationCaseBuilder
NavigationCaseBuilder.RedirectBuilder
-
-
Constructor Summary
Constructors Constructor Description NavigationCaseBuilderImpl(FlowBuilderImpl root)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NavigationCaseBuildercondition(jakarta.el.ValueExpression condition)Set the if of the current navigation case.NavigationCaseBuildercondition(String condition)Set the if of the current navigation case.NavigationCaseBuilderfromAction(String fromAction)Set the from-action of the current navigation case.NavigationCaseBuilderfromOutcome(String fromOutcome)Set the from-outcome of the current navigation case.NavigationCaseBuilderfromViewId(String fromViewId)Set the from-view-id of the current navigation case.NavigationCaseBuilder.RedirectBuilderredirect()Create a redirect within this navigation case.NavigationCaseBuildertoFlowDocumentId(String toFlowDocumentId)Set the to-flow-document-id of the current navigation case.NavigationCaseBuildertoViewId(String toViewId)Set the to-view-id of the current navigation case.
-
-
-
Constructor Detail
-
NavigationCaseBuilderImpl
public NavigationCaseBuilderImpl(FlowBuilderImpl root)
-
-
Method Detail
-
toFlowDocumentId
public NavigationCaseBuilder toFlowDocumentId(String toFlowDocumentId)
Description copied from class:NavigationCaseBuilderSet the to-flow-document-id of the current navigation case.
- Specified by:
toFlowDocumentIdin classNavigationCaseBuilder- Parameters:
toFlowDocumentId- the to-flow-document-id- Returns:
- the builder instance
-
fromAction
public NavigationCaseBuilder fromAction(String fromAction)
Description copied from class:NavigationCaseBuilderSet the from-action of the current navigation case.
- Specified by:
fromActionin classNavigationCaseBuilder- Parameters:
fromAction- the from-action- Returns:
- the builder instance
-
fromOutcome
public NavigationCaseBuilder fromOutcome(String fromOutcome)
Description copied from class:NavigationCaseBuilderSet the from-outcome of the current navigation case.
- Specified by:
fromOutcomein classNavigationCaseBuilder- Parameters:
fromOutcome- the from-outcome- Returns:
- the builder instance
-
fromViewId
public NavigationCaseBuilder fromViewId(String fromViewId)
Description copied from class:NavigationCaseBuilderSet the from-view-id of the current navigation case.
- Specified by:
fromViewIdin classNavigationCaseBuilder- Parameters:
fromViewId- the from-view-id- Returns:
- the builder instance
-
toViewId
public NavigationCaseBuilder toViewId(String toViewId)
Description copied from class:NavigationCaseBuilderSet the to-view-id of the current navigation case.
- Specified by:
toViewIdin classNavigationCaseBuilder- Parameters:
toViewId- the to-view-id- Returns:
- the builder instance
-
condition
public NavigationCaseBuilder condition(String condition)
Description copied from class:NavigationCaseBuilderSet the if of the current navigation case.
- Specified by:
conditionin classNavigationCaseBuilder- Parameters:
condition- the <if>- Returns:
- the builder instance
-
condition
public NavigationCaseBuilder condition(jakarta.el.ValueExpression condition)
Description copied from class:NavigationCaseBuilderSet the if of the current navigation case.
- Specified by:
conditionin classNavigationCaseBuilder- Parameters:
condition- the <if>- Returns:
- the builder instance
-
redirect
public NavigationCaseBuilder.RedirectBuilder redirect()
Description copied from class:NavigationCaseBuilderCreate a redirect within this navigation case.
- Specified by:
redirectin classNavigationCaseBuilder- Returns:
- the builder instance
-
-