Class ClientWindowFactory
- java.lang.Object
-
- jakarta.faces.lifecycle.ClientWindowFactory
-
- All Implemented Interfaces:
FacesWrapper<ClientWindowFactory>
public abstract class ClientWindowFactory extends Object implements 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
Constructors Constructor Description ClientWindowFactory()
Deprecated.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
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract ClientWindow
getClientWindow(FacesContext context)
The implementation is responsible for creating theClientWindow
instance for this request.ClientWindowFactory
getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
-
-
-
Constructor Detail
-
ClientWindowFactory
@Deprecated public ClientWindowFactory()
Deprecated.Use the other constructor taking the implementation being wrapped.
-
ClientWindowFactory
public ClientWindowFactory(ClientWindowFactory wrapped)
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 Detail
-
getWrapped
public ClientWindowFactory 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
public abstract ClientWindow getClientWindow(FacesContext context)
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
-
-