public abstract class FaceletCacheFactory extends java.lang.Object implements FacesWrapper<FaceletCacheFactory>
Allows customization of the
implementation of FaceletCache
.
Usage: extend this class and push the implementation being wrapped to the
constructor and use getWrapped()
to access the instance being wrapped.
Constructor and Description |
---|
FaceletCacheFactory()
Deprecated.
Use the other constructor taking the implementation being wrapped.
|
FaceletCacheFactory(FaceletCacheFactory wrapped)
If this factory has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. |
Modifier and Type | Method and Description |
---|---|
abstract FaceletCache |
getFaceletCache() |
FaceletCacheFactory |
getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. |
@Deprecated public FaceletCacheFactory()
public FaceletCacheFactory(FaceletCacheFactory 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.
wrapped
- The implementation being wrapped.public FaceletCacheFactory getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
getWrapped
in interface FacesWrapper<FaceletCacheFactory>
public abstract FaceletCache getFaceletCache()