Class LifecycleFactory
- All Implemented Interfaces:
FacesWrapper<LifecycleFactory>
LifecycleFactory is
a factory object that creates (if needed) and returns Lifecycle instances. Implementations of JavaServer Faces must
provide at least a default implementation of Lifecycle.
Advanced implementations (or external third party libraries) MAY
provide additional Lifecycle implementations (keyed by
lifecycle identifiers) for performing different types of request
processing on a per-request basis.
There must be one LifecycleFactory instance 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 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidaddLifecycle(String lifecycleId, Lifecycle lifecycle) Register a newLifecycleinstance, associated with the specifiedlifecycleId, to be supported by thisLifecycleFactory.abstract LifecyclegetLifecycle(String lifecycleId) Create (if needed) and return aLifecycleinstance for the specified lifecycle identifier.Return anIteratorover the set of lifecycle identifiers supported by this factory.If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
-
Field Details
-
DEFAULT_LIFECYCLE
The lifecycle identifier for the default
Lifecycleinstance for this JavaServer Faces implementation.- See Also:
-
-
Constructor Details
-
LifecycleFactory
public LifecycleFactory()
-
-
Method Details
-
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
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:
IllegalArgumentException- if aLifecyclewith the specifiedlifecycleIdhas already been registeredNullPointerException- iflifecycleIdorlifecycleisnull
-
getLifecycle
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.- Parameters:
lifecycleId- Lifecycle identifier of the requestedLifecycleinstance- Throws:
IllegalArgumentException- if noLifecycleinstance can be returned for the specified identifierNullPointerException- iflifecycleIdisnull
-
getLifecycleIds
Return an
Iteratorover the set of lifecycle identifiers supported by this factory. This set must include the value specified byLifecycleFactory.DEFAULT_LIFECYCLE.
-