Class PartialViewContextFactory

java.lang.Object
jakarta.faces.context.PartialViewContextFactory
All Implemented Interfaces:
FacesWrapper<PartialViewContextFactory>
Direct Known Subclasses:
PartialViewContextFactoryImpl

public abstract class PartialViewContextFactory extends Object implements FacesWrapper<PartialViewContextFactory>

PartialViewContextFactory is a factory object that creates (if needed) and returns new PartialViewContext instances.

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

 PartialViewContextFactory factory = (PartialViewContextFactory) FactoryFinder.getFactory(FactoryFinder.PARTIAL_VIEW_CONTEXT_FACTORY);
 

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

Since:
2.0
  • Constructor Details

    • PartialViewContextFactory

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

      public PartialViewContextFactory(PartialViewContextFactory 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.
  • Method Details