Class InjectionFacesContextFactory
- java.lang.Object
-
- jakarta.faces.context.FacesContextFactory
-
- com.sun.faces.context.InjectionFacesContextFactory
-
- All Implemented Interfaces:
FacesWrapper<FacesContextFactory>
public class InjectionFacesContextFactory extends FacesContextFactory
ThisFacesContextFactoryis responsible for injecting the defaultFacesContextinstance into the top-levelFacesContextas configured by the runtime. Doing this allows us to preserve backwards compatibility as the API evolves without having the API rely on implementation specific details.
-
-
Constructor Summary
Constructors Constructor Description InjectionFacesContextFactory(FacesContextFactory delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FacesContextgetFacesContext(Object context, Object request, Object response, Lifecycle lifecycle)Create (if needed) and return aFacesContextinstance that is initialized for the processing of the specified request and response objects, utilizing the specifiedLifecycleinstance, for this web application.-
Methods inherited from class jakarta.faces.context.FacesContextFactory
getWrapped
-
-
-
-
Constructor Detail
-
InjectionFacesContextFactory
public InjectionFacesContextFactory(FacesContextFactory delegate)
-
-
Method Detail
-
getFacesContext
public FacesContext getFacesContext(Object context, Object request, Object response, Lifecycle lifecycle) throws FacesException
Description copied from class:FacesContextFactoryCreate (if needed) and return a
FacesContextinstance that is initialized for the processing of the specified request and response objects, utilizing the specifiedLifecycleinstance, for this web application.The implementation of this method must ensure that calls to the
getCurrentInstance()method ofFacesContext, from the same thread that called this method, will return the sameFacesContextinstance until therelease()method is called on that instance.The implementation must call
ExternalContextFactory.getExternalContext(java.lang.Object, java.lang.Object, java.lang.Object)to produce theExternalContextfor theFacesContextinstance.The default implementation must call
ExceptionHandlerFactory.getExceptionHandler()and make it so the return from that method is what gets returned from a call toFacesContext.getExceptionHandler()on the returnedFacesContextinstance.The default implementation must call
ClientWindowFactory.getClientWindow(jakarta.faces.context.FacesContext)and make it so the return from that method is what gets returned from a call toExternalContext.getClientWindow()on the returnedExternalContextinstance.- Specified by:
getFacesContextin classFacesContextFactory- Parameters:
context- In Jakarta Servlet environments, theServletContextthat is associated with this web applicationrequest- In Jakarta Servlet environments, theServletRequestthat is to be processedresponse- In Jakarta Servlet environments, theServletResponsethat is to be processedlifecycle- TheLifecycleinstance being used to process this request- Returns:
- the instance of
FacesContext. - Throws:
FacesException- if aFacesContextcannot be constructed for the specified parameters
-
-