Class ClientWindowFactory
- All Implemented Interfaces:
FacesWrapper<ClientWindowFactory>
Create ClientWindow
instances based on the incoming request.
Usage: extend this class and push the implementation being wrapped to the constructor and use getWrapped()
to
access the instance being wrapped.
- Since:
- 2.2
-
Constructor Summary
ConstructorDescriptionDeprecated.Use the other constructor taking the implementation being wrapped.ClientWindowFactory
(ClientWindowFactory wrapped) If this factory has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. -
Method Summary
Modifier and TypeMethodDescriptionabstract ClientWindow
getClientWindow
(FacesContext context) The implementation is responsible for creating theClientWindow
instance for this request.If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
-
Constructor Details
-
ClientWindowFactory
Deprecated.Use the other constructor taking the implementation being wrapped. -
ClientWindowFactory
If this factory has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. The
getWrapped()
will then return the implementation being wrapped.- Parameters:
wrapped
- The implementation being wrapped.
-
-
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.
- Specified by:
getWrapped
in interfaceFacesWrapper<ClientWindowFactory>
- Returns:
- the wrapped instance.
-
getClientWindow
The implementation is responsible for creating the
ClientWindow
instance for this request. IfClientWindow.CLIENT_WINDOW_MODE_PARAM_NAME
is "none" or unspecified, this method must returnnull
. IfClientWindow.CLIENT_WINDOW_MODE_PARAM_NAME
is "url" the implementation must return aClientWindow
instance that implements the url-mode semantics described inClientWindow
.- Parameters:
context
- theFacesContext
for this request.- Returns:
- the
ClientWindow
for this request, ornull
- Since:
- 2.2
-