Uses of Class
jakarta.faces.application.ResourceHandler
-
Packages that use ResourceHandler Package Description jakarta.faces.application -
-
Uses of ResourceHandler in jakarta.faces.application
Subclasses of ResourceHandler in jakarta.faces.application Modifier and Type Class Description class
ResourceHandlerWrapper
Provides a simple implementation ofResourceHandler
that can be subclassed by developers wishing to provide specialized behavior to an existingResourceHandler
instance.Methods in jakarta.faces.application that return ResourceHandler Modifier and Type Method Description ResourceHandler
Application. getResourceHandler()
Return the singleton, stateless, thread-safeResourceHandler
for this application.ResourceHandler
ApplicationWrapper. getResourceHandler()
The default behavior of this method is to callApplication.getResourceHandler()
on the wrappedApplication
object.ResourceHandler
ResourceHandlerWrapper. getWrapped()
Methods in jakarta.faces.application with parameters of type ResourceHandler Modifier and Type Method Description void
Application. setResourceHandler(ResourceHandler resourceHandler)
Set theResourceHandler
instance that will be utilized for rendering the markup for resources, and for satisfying client requests to serve up resources.void
ApplicationWrapper. setResourceHandler(ResourceHandler resourceHandler)
The default behavior of this method is to callApplication.setResourceHandler(ResourceHandler)
on the wrappedApplication
object.Constructors in jakarta.faces.application with parameters of type ResourceHandler Constructor Description ResourceHandlerWrapper(ResourceHandler wrapped)
If this resource handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
-