Class FacesContextFactoryImpl
- java.lang.Object
-
- jakarta.faces.context.FacesContextFactory
-
- com.sun.faces.context.FacesContextFactoryImpl
-
- All Implemented Interfaces:
FacesWrapper<FacesContextFactory>
public class FacesContextFactoryImpl extends FacesContextFactory
-
-
Constructor Summary
Constructors Constructor Description FacesContextFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FacesContextgetFacesContext(Object sc, 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
-
-
-
-
Method Detail
-
getFacesContext
public FacesContext getFacesContext(Object sc, 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:
sc- 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
-
-