Uses of Class
jakarta.faces.application.Application
Packages that use Application
Package
Description
APIs that are used to link an application's
business logic objects to Jakarta Faces, as well as convenient
pluggable mechanisms to manage the execution of an application that is
based on Jakarta Faces.
Classes and interfaces
defining per-request state information.
Interfaces describing
events and event listeners, and concrete event implementation classes.
-
Uses of Application in com.sun.faces.application
Subclasses of Application in com.sun.faces.applicationModifier and TypeClassDescriptionclassApplication represents a per-web-application singleton object where applications based on Faces (or implementations wishing to provide extended functionality) can register application-wide singletons that provide functionality required by Faces.Methods in com.sun.faces.application that return ApplicationModifier and TypeMethodDescriptionApplicationAssociate.getApplication()ApplicationFactoryImpl.getApplication()Create (if needed) and return anApplicationinstance for this web application.InjectionApplicationFactory.getApplication()Methods in com.sun.faces.application with parameters of type ApplicationModifier and TypeMethodDescriptionvoidApplicationFactoryImpl.setApplication(Application application) Replace theApplicationinstance that will be returned for this web application.voidInjectionApplicationFactory.setApplication(Application application) Constructors in com.sun.faces.application with parameters of type Application -
Uses of Application in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl with parameters of type Application -
Uses of Application in com.sun.faces.config
Methods in com.sun.faces.config that return Application -
Uses of Application in com.sun.faces.config.processor
Methods in com.sun.faces.config.processor that return Application -
Uses of Application in com.sun.faces.context
Methods in com.sun.faces.context that return Application -
Uses of Application in com.sun.faces.util
Methods in com.sun.faces.util that return Application -
Uses of Application in jakarta.faces.application
Subclasses of Application in jakarta.faces.applicationModifier and TypeClassDescriptionclassProvides a simple implementation ofApplicationthat can be subclassed by developers wishing to provide specialized behavior to an existingApplicationinstance.Methods in jakarta.faces.application that return ApplicationModifier and TypeMethodDescriptionabstract ApplicationApplicationFactory.getApplication()Create (if needed) and return anApplicationinstance for this web application.ApplicationWrapper.getWrapped()Methods in jakarta.faces.application with parameters of type ApplicationModifier and TypeMethodDescriptionabstract voidApplicationFactory.setApplication(Application application) Replace theApplicationinstance that will be returned for this web application.Constructors in jakarta.faces.application with parameters of type ApplicationModifierConstructorDescriptionApplicationWrapper(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 ApplicationModifier and TypeMethodDescriptionabstract ApplicationFacesContext.getApplication()Return theApplicationinstance associated with this web application.FacesContextWrapper.getApplication()The default behavior of this method is to callFacesContext.getApplication()on the wrappedFacesContextobject. -
Uses of Application in jakarta.faces.event
Methods in jakarta.faces.event that return ApplicationModifier and TypeMethodDescriptionPostConstructApplicationEvent.getApplication()The sourceApplicationthat sent this event.PreDestroyApplicationEvent.getApplication()The sourceApplicationthat sent this event.Constructors in jakarta.faces.event with parameters of type ApplicationModifierConstructorDescriptionPostConstructApplicationEvent(Application application) Constructs a newPostConstructApplicationEventfor this application.PostConstructApplicationEvent(FacesContext facesContext, Application application) Constructs a newPostConstructApplicationEventfor this application.PreDestroyApplicationEvent(Application application) Constructs a newPreDestroyApplicationEventfor this application.PreDestroyApplicationEvent(FacesContext facesContext, Application application) Constructs a newPreDestroyApplicationEventfor this application.