Uses of Class
jakarta.faces.application.NavigationCase
-
Packages that use NavigationCase Package Description jakarta.faces.application jakarta.faces.flow -
-
Uses of NavigationCase in jakarta.faces.application
Subclasses of NavigationCase in jakarta.faces.application Modifier and Type Class Description class
NavigationCaseWrapper
Provides a simple implementation ofNavigationCase
that can be subclassed by developers wishing to provide specialized behavior to an existingNavigationCase
instance.Methods in jakarta.faces.application that return NavigationCase Modifier and Type Method Description abstract NavigationCase
ConfigurableNavigationHandler. getNavigationCase(FacesContext context, String fromAction, String outcome)
Return theNavigationCase
representing the navigation that would be taken hadNavigationHandler.handleNavigation(jakarta.faces.context.FacesContext, java.lang.String, java.lang.String)
been called with the same arguments ornull
if there is no such case.NavigationCase
ConfigurableNavigationHandler. getNavigationCase(FacesContext context, String fromAction, String outcome, String toFlowDocumentId)
Return theNavigationCase
representing the navigation that would be taken hadNavigationHandler.handleNavigation(jakarta.faces.context.FacesContext, java.lang.String, java.lang.String)
been called with the same arguments ornull
if there is no such case.NavigationCase
ConfigurableNavigationHandlerWrapper. getNavigationCase(FacesContext context, String fromAction, String outcome)
NavigationCase
ConfigurableNavigationHandlerWrapper. getNavigationCase(FacesContext context, String fromAction, String outcome, String toFlowDocumentId)
NavigationCase
NavigationCaseWrapper. getWrapped()
Methods in jakarta.faces.application that return types with arguments of type NavigationCase Modifier and Type Method Description abstract Map<String,Set<NavigationCase>>
ConfigurableNavigationHandler. getNavigationCases()
Return aMap<String, Set<NavigationCase>>
where the keys are<from-view-id>
values and the values areSet<NavigationCase>
where each element in the Set is aNavigationCase
that applies to that<from-view-id>
.Map<String,Set<NavigationCase>>
ConfigurableNavigationHandlerWrapper. getNavigationCases()
Constructors in jakarta.faces.application with parameters of type NavigationCase Constructor Description NavigationCaseWrapper(NavigationCase wrapped)
If this navigation case has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. -
Uses of NavigationCase in jakarta.faces.flow
Methods in jakarta.faces.flow that return types with arguments of type NavigationCase Modifier and Type Method Description abstract Map<String,Set<NavigationCase>>
Flow. getNavigationCases()
Return an unmodifiable view of the navigation cases within this flow.
-