Uses of Class
jakarta.faces.application.Application
-
Packages that use Application Package Description com.sun.faces.application com.sun.faces.application.applicationimpl com.sun.faces.config com.sun.faces.config.processor com.sun.faces.context com.sun.faces.util jakarta.faces.application 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.jakarta.faces.context Classes and interfaces defining per-request state information.jakarta.faces.event 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.application Modifier and Type Class Description classApplicationImplApplication 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 Application Modifier and Type Method Description ApplicationApplicationAssociate. getApplication()ApplicationApplicationFactoryImpl. getApplication()Create (if needed) and return anApplicationinstance for this web application.ApplicationInjectionApplicationFactory. getApplication()Methods in com.sun.faces.application with parameters of type Application Modifier and Type Method Description voidApplicationFactoryImpl. 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 Constructor Description PropertyEditorHelper(Application app) -
Uses of Application in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl with parameters of type Application Modifier and Type Method Description ProjectStageStage. getProjectStage(Application application) -
Uses of Application in com.sun.faces.config
Methods in com.sun.faces.config that return Application Modifier and Type Method Description ApplicationInitFacesContext. getApplication() -
Uses of Application in com.sun.faces.config.processor
Methods in com.sun.faces.config.processor that return Application Modifier and Type Method Description protected ApplicationAbstractConfigProcessor. getApplication() -
Uses of Application in com.sun.faces.context
Methods in com.sun.faces.context that return Application Modifier and Type Method Description ApplicationFacesContextImpl. getApplication() -
Uses of Application in com.sun.faces.util
Methods in com.sun.faces.util that return Application Modifier and Type Method Description protected static ApplicationMessageFactory. getApplication() -
Uses of Application in jakarta.faces.application
Subclasses of Application in jakarta.faces.application Modifier and Type Class Description classApplicationWrapperProvides a simple implementation ofApplicationthat can be subclassed by developers wishing to provide specialized behavior to an existingApplicationinstance.Methods in jakarta.faces.application that return Application Modifier and Type Method Description abstract ApplicationApplicationFactory. getApplication()Create (if needed) and return anApplicationinstance for this web application.ApplicationApplicationWrapper. getWrapped()Methods in jakarta.faces.application with parameters of type Application Modifier and Type Method Description abstract voidApplicationFactory. setApplication(Application application)Replace theApplicationinstance 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 ApplicationFacesContext. getApplication()Return theApplicationinstance associated with this web application.ApplicationFacesContextWrapper. 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 Application Modifier and Type Method Description ApplicationPostConstructApplicationEvent. getApplication()The sourceApplicationthat sent this event.ApplicationPreDestroyApplicationEvent. getApplication()The sourceApplicationthat sent this event.Constructors in jakarta.faces.event with parameters of type Application Constructor Description PostConstructApplicationEvent(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.
-