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 FlowHandlerFactory
that
can be subclassed by developers wishing to provide specialized
behavior to an existing FlowHandlerFactory
instance. The
default implementation of all methods is to call through to the
wrapped FlowHandlerFactory
instance.
getWrapped()
to
return the instance being wrapping.- Since:
- 2.2
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateFlowHandler
(FacesContext context) Create the singleton instance ofFlowHandler
.abstract FlowHandlerFactory
A class that implements this interface uses this method to return an instance of the class being wrapped.
-
Constructor Details
-
FlowHandlerFactoryWrapper
public FlowHandlerFactoryWrapper()
-
-
Method Details
-
getWrapped
A class that implements this interface uses this method to return an instance of the class being wrapped.
- Specified by:
getWrapped
in interfaceFacesWrapper<FlowHandlerFactory>
- Since:
- 2.2
-
createFlowHandler
Description copied from class:FlowHandlerFactory
Create the singleton instance of
FlowHandler
.- Specified by:
createFlowHandler
in classFlowHandlerFactory
-