Uses of Class
jakarta.faces.application.NavigationCase
Package | Description |
---|---|
com.sun.faces.application | |
com.sun.faces.flow | |
com.sun.faces.flow.builder | |
com.sun.faces.renderkit.html_basic | |
jakarta.faces.application | |
jakarta.faces.flow |
-
Uses of NavigationCase in com.sun.faces.application
Methods in com.sun.faces.application that return NavigationCase Modifier and Type Method Description NavigationCase
NavigationHandlerImpl. getNavigationCase(FacesContext context, String fromAction, String outcome)
NavigationCase
NavigationHandlerImpl. getNavigationCase(FacesContext context, String fromAction, String outcome, String toFlowDocumentId)
Methods in com.sun.faces.application that return types with arguments of type NavigationCase Modifier and Type Method Description Map<String,Set<NavigationCase>>
ApplicationAssociate. getNavigationCaseListMappings()
Return aMap
of navigation mappings loaded from the configuration system.Map<String,Set<NavigationCase>>
NavigationHandlerImpl. getNavigationCases()
Methods in com.sun.faces.application with parameters of type NavigationCase Modifier and Type Method Description void
ApplicationAssociate. addNavigationCase(NavigationCase navigationCase)
Add a navigation case to the internal case set. -
Uses of NavigationCase in com.sun.faces.flow
Methods in com.sun.faces.flow that return types with arguments of type NavigationCase Modifier and Type Method Description Map<String,Set<NavigationCase>>
FlowImpl. _getNavigationCases()
Map<String,Set<NavigationCase>>
FlowImpl. getNavigationCases()
-
Uses of NavigationCase in com.sun.faces.flow.builder
Subclasses of NavigationCase in com.sun.faces.flow.builder Modifier and Type Class Description class
MutableNavigationCase
NavigationCase represents a<navigation-case>
in the navigation rule base, as well as the<from-view-id>
with which this<navigation-case>
is a sibling. -
Uses of NavigationCase in com.sun.faces.renderkit.html_basic
Methods in com.sun.faces.renderkit.html_basic that return NavigationCase Modifier and Type Method Description protected NavigationCase
OutcomeTargetRenderer. getNavigationCase(FacesContext context, UIComponent component)
Invoke theNavigationHandler
preemptively to resolve aNavigationCase
for the outcome declared on theUIOutcomeTarget
component.Methods in com.sun.faces.renderkit.html_basic with parameters of type NavigationCase Modifier and Type Method Description protected void
OutcomeTargetRenderer. addNavigationParams(NavigationCase navCase, Map<String,List<String>> existingParams)
protected String
OutcomeTargetRenderer. getEncodedTargetURL(FacesContext context, UIComponent component, NavigationCase navCase)
Resolve the target view id and then delegate toViewHandler.getBookmarkableURL(jakarta.faces.context.FacesContext, String, java.util.Map, boolean)
to produce a redirect URL, which will add the page parameters if necessary and properly prioritizing the parameter overrides.protected boolean
OutcomeTargetRenderer. isIncludeViewParams(UIComponent component, NavigationCase navcase)
protected void
OutcomeTargetLinkRenderer. renderAsActive(FacesContext context, NavigationCase navCase, UIComponent component)
-
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.