Package javax.faces.flow
Class FlowHandlerFactoryWrapper
- java.lang.Object
-
- javax.faces.flow.FlowHandlerFactory
-
- javax.faces.flow.FlowHandlerFactoryWrapper
-
- All Implemented Interfaces:
FacesWrapper<FlowHandlerFactory>
public abstract class FlowHandlerFactoryWrapper extends FlowHandlerFactory implements FacesWrapper<FlowHandlerFactory>
FlowHandlerFactoryWrapper provides a simple implementation of
FlowHandlerFactorythat can be subclassed by developers wishing to provide specialized behavior to an existingFlowHandlerFactoryinstance. The default implementation of all methods is to call through to the wrappedFlowHandlerFactoryinstance.getWrapped()to return the instance being wrapping.- Since:
- 2.2
-
-
Constructor Summary
Constructors Constructor Description FlowHandlerFactoryWrapper()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description FlowHandlercreateFlowHandler(FacesContext context)Create the singleton instance ofFlowHandler.abstract FlowHandlerFactorygetWrapped()A class that implements this interface uses this method to return an instance of the class being wrapped.
-
-
-
Method Detail
-
getWrapped
public abstract FlowHandlerFactory getWrapped()
A class that implements this interface uses this method to return an instance of the class being wrapped.
- Specified by:
getWrappedin interfaceFacesWrapper<FlowHandlerFactory>- Since:
- 2.2
-
createFlowHandler
public FlowHandler createFlowHandler(FacesContext context)
Description copied from class:FlowHandlerFactoryCreate the singleton instance of
FlowHandler.- Specified by:
createFlowHandlerin classFlowHandlerFactory
-
-