Package jakarta.faces.lifecycle
Class LifecycleFactory
- java.lang.Object
- 
- jakarta.faces.lifecycle.LifecycleFactory
 
- 
- All Implemented Interfaces:
- FacesWrapper<LifecycleFactory>
 
 public abstract class LifecycleFactory extends Object implements FacesWrapper<LifecycleFactory> see Javadoc of Faces Specification
- 
- 
Field SummaryFields Modifier and Type Field Description static StringDEFAULT_LIFECYCLE
 - 
Constructor SummaryConstructors Constructor Description LifecycleFactory()Deprecated.LifecycleFactory(LifecycleFactory delegate)
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidaddLifecycle(String lifecycleId, Lifecycle lifecycle)abstract LifecyclegetLifecycle(String lifecycleId)abstract Iterator<String>getLifecycleIds()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_LIFECYCLEpublic static final String DEFAULT_LIFECYCLE - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
LifecycleFactory@Deprecated public LifecycleFactory() Deprecated.
 - 
LifecycleFactorypublic LifecycleFactory(LifecycleFactory delegate) 
 
- 
 - 
Method Detail- 
getWrappedpublic 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 returnsnull.- Specified by:
- getWrappedin interface- FacesWrapper<LifecycleFactory>
- Returns:
- the decorated LifecycleFactoryif this factory decorates another, ornullotherwise
- Since:
- 2.0
 
 
- 
 
-