Class FacesContextFactory

  • All Implemented Interfaces:
    FacesWrapper<FacesContextFactory>


    public abstract class FacesContextFactory
    extends java.lang.Object
    implements FacesWrapper<FacesContextFactory>

    FacesContextFactory is a factory object that creates (if needed) and returns new FacesContext instances, initialized for the processing of the specified request and response objects. Implementations may take advantage of the calls to the release() method of the allocated FacesContext instances to pool and recycle them, rather than creating a new instance every time.

    There must be one FacesContextFactory instance per web application that is utilizing JavaServer Faces. This instance can be acquired, in a portable manner, by calling:

       FacesContextFactory factory = (FacesContextFactory)
        FactoryFinder.getFactory(FactoryFinder.FACES_CONTEXT_FACTORY);
     

    Usage: extend this class and push the implementation being wrapped to the constructor and use getWrapped() to access the instance being wrapped.

    • Constructor Summary

      Constructors 
      Constructor Description
      FacesContextFactory​()
      Deprecated. 
      Use the other constructor taking the implementation being wrapped.
      FacesContextFactory​(FacesContextFactory wrapped)
      If this factory has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract FacesContext getFacesContext​(java.lang.Object context, java.lang.Object request, java.lang.Object response, Lifecycle lifecycle)
      Create (if needed) and return a FacesContext instance that is initialized for the processing of the specified request and response objects, utilizing the specified Lifecycle instance, for this web application.
      FacesContextFactory getWrapped​()
      If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FacesContextFactory

        @Deprecated
        public FacesContextFactory​()
        Deprecated. Use the other constructor taking the implementation being wrapped.
      • FacesContextFactory

        public FacesContextFactory​(FacesContextFactory wrapped)

        If this factory has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. The getWrapped() will then return the implementation being wrapped.

        Parameters:
        wrapped - The implementation being wrapped.