Class LifecycleFactory
- java.lang.Object
-
- javax.faces.lifecycle.LifecycleFactory
-
- All Implemented Interfaces:
FacesWrapper<LifecycleFactory>
public abstract class LifecycleFactory extends java.lang.Object implements FacesWrapper<LifecycleFactory>
LifecycleFactory is a factory object that creates (if needed) and returns
Lifecycleinstances. Implementations of JavaServer Faces must provide at least a default implementation ofLifecycle. Advanced implementations (or external third party libraries) MAY provide additionalLifecycleimplementations (keyed by lifecycle identifiers) for performing different types of request processing on a per-request basis.There must be one
LifecycleFactoryinstance per web application that is utilizing JavaServer Faces. This instance can be acquired, in a portable manner, by calling:LifecycleFactory factory = (LifecycleFactory) FactoryFinder.getFactory(FactoryFinder.LIFECYCLE_FACTORY);
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_LIFECYCLEThe lifecycle identifier for the defaultLifecycleinstance for this JavaServer Faces implementation.
-
Constructor Summary
Constructors Constructor Description LifecycleFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidaddLifecycle(java.lang.String lifecycleId, Lifecycle lifecycle)Register a newLifecycleinstance, associated with the specifiedlifecycleId, to be supported by thisLifecycleFactory.abstract LifecyclegetLifecycle(java.lang.String lifecycleId)Create (if needed) and return aLifecycleinstance for the specified lifecycle identifier.abstract java.util.Iterator<java.lang.String>getLifecycleIds()Return anIteratorover the set of lifecycle identifiers supported by this factory.LifecycleFactorygetWrapped()If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
-
-
-
Field Detail
-
DEFAULT_LIFECYCLE
public static final java.lang.String DEFAULT_LIFECYCLE
The lifecycle identifier for the default
Lifecycleinstance for this JavaServer Faces implementation.- See Also:
- Constant Field Values
-
-
Method Detail
-
getWrapped
public LifecycleFactory getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. A default implementation is provided that returns
null.- Specified by:
getWrappedin interfaceFacesWrapper<LifecycleFactory>- Since:
- 2.0
-
addLifecycle
public abstract void addLifecycle(java.lang.String lifecycleId, Lifecycle lifecycle)Register a new
Lifecycleinstance, associated with the specifiedlifecycleId, to be supported by thisLifecycleFactory. This method may be called at any time, and makes the correspondingLifecycleinstance available throughout the remaining lifetime of this web application.- Parameters:
lifecycleId- Identifier of the newLifecyclelifecycle-Lifecycleinstance that we are registering- Throws:
java.lang.IllegalArgumentException- if aLifecyclewith the specifiedlifecycleIdhas already been registeredjava.lang.NullPointerException- iflifecycleIdorlifecycleisnull
-
getLifecycle
public abstract Lifecycle getLifecycle(java.lang.String lifecycleId)
Create (if needed) and return a
Lifecycleinstance for the specified lifecycle identifier. The set of available lifecycle identifiers is available via thegetLifecycleIds()method.Each call to
getLifecycle()for the samelifecycleId, from within the same web application, must return the sameLifecycleinstance.
-
getLifecycleIds
public abstract java.util.Iterator<java.lang.String> getLifecycleIds()
Return an
Iteratorover the set of lifecycle identifiers supported by this factory. This set must include the value specified byLifecycleFactory.DEFAULT_LIFECYCLE.
-
-