Package jakarta.faces
Interface FacesWrapper<T>
-
- Type Parameters:
T
- the wrapped type.
- All Known Implementing Classes:
ActionListenerWrapper
,ApplicationFactory
,ApplicationWrapper
,ClientWindowFactory
,ClientWindowWrapper
,ConfigurableNavigationHandlerWrapper
,ExceptionHandlerFactory
,ExceptionHandlerWrapper
,ExternalContextFactory
,ExternalContextWrapper
,FaceletCacheFactory
,FacesContextFactory
,FacesContextWrapper
,FlashFactory
,FlashWrapper
,FlowHandlerFactoryWrapper
,LifecycleFactory
,LifecycleWrapper
,NavigationCaseWrapper
,NavigationHandlerWrapper
,PartialResponseWriter
,PartialViewContextFactory
,PartialViewContextWrapper
,RendererWrapper
,RenderKitFactory
,RenderKitWrapper
,ResourceHandlerWrapper
,ResourceWrapper
,ResponseWriterWrapper
,SearchExpressionContextFactory
,SearchExpressionHandlerWrapper
,StateManagerWrapper
,TagHandlerDelegateFactory
,ViewDeclarationLanguageFactory
,ViewDeclarationLanguageWrapper
,ViewHandlerWrapper
,VisitContextFactory
,VisitContextWrapper
public interface FacesWrapper<T>
Any wrapper class in Jakarta Faces that must provide access to the object it wraps must implement this interface.
The expected usage of all subclasses is to provide a constructor that takes an instance of type
T
, which sets the instance variable that is returned from thegetWrapped()
method.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getWrapped()
A class that implements this interface uses this method to return an instance of the class being wrapped.
-
-
-
Method Detail
-
getWrapped
T getWrapped()
A class that implements this interface uses this method to return an instance of the class being wrapped.
- Returns:
- the wrapped instance.
- Since:
- 2.0
-
-