Uses of Class
jakarta.faces.application.Application
-
Packages that use Application Package Description jakarta.faces.application jakarta.faces.context jakarta.faces.event -
-
Uses of Application in jakarta.faces.application
Subclasses of Application in jakarta.faces.application Modifier and Type Class Description class
ApplicationWrapper
Provides a simple implementation ofApplication
that can be subclassed by developers wishing to provide specialized behavior to an existingApplication
instance.Methods in jakarta.faces.application that return Application Modifier and Type Method Description abstract Application
ApplicationFactory. getApplication()
Create (if needed) and return anApplication
instance for this web application.Application
ApplicationWrapper. getWrapped()
Methods in jakarta.faces.application with parameters of type Application Modifier and Type Method Description abstract void
ApplicationFactory. setApplication(Application application)
Replace theApplication
instance that will be returned for this web application.Constructors in jakarta.faces.application with parameters of type Application Constructor Description ApplicationWrapper(Application wrapped)
If this application has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. -
Uses of Application in jakarta.faces.context
Methods in jakarta.faces.context that return Application Modifier and Type Method Description abstract Application
FacesContext. getApplication()
Return theApplication
instance associated with this web application.Application
FacesContextWrapper. getApplication()
The default behavior of this method is to callFacesContext.getApplication()
on the wrappedFacesContext
object. -
Uses of Application in jakarta.faces.event
Methods in jakarta.faces.event that return Application Modifier and Type Method Description Application
PostConstructApplicationEvent. getApplication()
The sourceApplication
that sent this event.Application
PreDestroyApplicationEvent. getApplication()
The sourceApplication
that sent this event.Constructors in jakarta.faces.event with parameters of type Application Constructor Description PostConstructApplicationEvent(Application application)
Constructs a newPostConstructApplicationEvent
for this application.PostConstructApplicationEvent(FacesContext facesContext, Application application)
Constructs a newPostConstructApplicationEvent
for this application.PreDestroyApplicationEvent(Application application)
Constructs a newPreDestroyApplicationEvent
for this application.PreDestroyApplicationEvent(FacesContext facesContext, Application application)
Constructs a newPreDestroyApplicationEvent
for this application.
-