Uses of Class
jakarta.faces.application.NavigationHandler
Package | Description |
---|---|
com.sun.faces.application | |
com.sun.faces.application.applicationimpl | |
jakarta.faces.application |
-
Uses of NavigationHandler in com.sun.faces.application
Subclasses of NavigationHandler in com.sun.faces.application Modifier and Type Class Description class
NavigationHandlerImpl
NavigationHandlerImpl is the class that implements default navigation handling.Methods in com.sun.faces.application that return NavigationHandler Modifier and Type Method Description NavigationHandler
ApplicationImpl. getNavigationHandler()
Methods in com.sun.faces.application with parameters of type NavigationHandler Modifier and Type Method Description void
ApplicationImpl. setNavigationHandler(NavigationHandler navigationHandler)
-
Uses of NavigationHandler in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl that return NavigationHandler Modifier and Type Method Description NavigationHandler
Singletons. getNavigationHandler()
Methods in com.sun.faces.application.applicationimpl with parameters of type NavigationHandler Modifier and Type Method Description void
Singletons. setNavigationHandler(NavigationHandler navigationHandler)
-
Uses of NavigationHandler in jakarta.faces.application
Subclasses of NavigationHandler in jakarta.faces.application Modifier and Type Class Description class
ConfigurableNavigationHandler
ConfigurableNavigationHandler extends the contract ofNavigationHandler
to allow runtime inspection of theNavigationCase
s that make up the rule-base for navigation.class
ConfigurableNavigationHandlerWrapper
Provides a simple implementation ofConfigurableNavigationHandler
that can be subclassed by developers wishing to provide specialized behavior to an existingConfigurableNavigationHandler
instance.class
NavigationHandlerWrapper
NavigationHandlerWrapper provides a simple implementation ofNavigationHandler
that can be subclassed by developers wishing to provide specialized behavior to an existingNavigationHandler
instance.Methods in jakarta.faces.application that return NavigationHandler Modifier and Type Method Description abstract NavigationHandler
Application. getNavigationHandler()
Return theNavigationHandler
instance that will be passed the outcome returned by any invoked application action for this web application.NavigationHandler
ApplicationWrapper. getNavigationHandler()
The default behavior of this method is to callApplication.getNavigationHandler()
on the wrappedApplication
object.NavigationHandler
NavigationHandlerWrapper. getWrapped()
Methods in jakarta.faces.application with parameters of type NavigationHandler Modifier and Type Method Description abstract void
Application. setNavigationHandler(NavigationHandler handler)
Set theNavigationHandler
instance that will be passed the outcome returned by any invoked application action for this web application.void
ApplicationWrapper. setNavigationHandler(NavigationHandler handler)
The default behavior of this method is to callApplication.setNavigationHandler(NavigationHandler)
on the wrappedApplication
object.Constructors in jakarta.faces.application with parameters of type NavigationHandler Constructor Description NavigationHandlerWrapper(NavigationHandler wrapped)
If this navigation handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.