javax.faces.application
Class StateManager

java.lang.Object
  extended by javax.faces.application.StateManager
Direct Known Subclasses:
StateManagerWrapper

public abstract class StateManager
extends Object

Responsible for storing sufficient information about a component tree so that an identical tree can later be recreated.

It is up to the concrete implementation to decide whether to use information from the "view template" that was used to first create the view, or whether to store sufficient information to enable the view to be restored without any reference to the original template. However as JSF components have mutable fields that can be set by code, and affected by user input, at least some state does need to be kept in order to recreate a previously-existing component tree.

There are two different options defined by the specification: "client" and "server" state.

When "client" state is configured, all state information required to create the tree is embedded within the data rendered to the client. Note that because data received from a remote client must always be treated as "tainted", care must be taken when using such data. Some StateManager implementations may use encryption to ensure that clients cannot modify the data, and that the data received on postback is therefore trustworthy.

When "server" state is configured, the data is saved somewhere "on the back end", and (at most) a token is embedded in the data rendered to the user.

This class is usually invoked by a concrete implementation of ViewHandler.

Note that class ViewHandler isolates JSF components from the details of the request format. This class isolates JSF components from the details of the response format. Because request and response are usually tightly coupled, the StateManager and ViewHandler implementations are also usually fairly tightly coupled (ie the ViewHandler/StateManager implementations come as pairs).

See also the JSF Specification

Version:
$Revision: 833810 $ $Date: 2009-11-07 21:40:01 -0500 (Sat, 07 Nov 2009) $
Author:
Manfred Geiler (latest modification by $Author: lu4242 $), Stan Silvert

Nested Class Summary
 class StateManager.SerializedView
          Deprecated.  
 
Field Summary
static String STATE_SAVING_METHOD_CLIENT
           
static String STATE_SAVING_METHOD_PARAM_NAME
          Define the state method to be used.
static String STATE_SAVING_METHOD_SERVER
           
 
Constructor Summary
StateManager()
           
 
Method Summary
protected  Object getComponentStateToSave(FacesContext context)
          Deprecated.  
protected  Object getTreeStructureToSave(FacesContext context)
          Deprecated.  
 boolean isSavingStateInClient(FacesContext context)
           
protected  void restoreComponentState(FacesContext context, UIViewRoot viewRoot, String renderKitId)
          Deprecated.  
protected  UIViewRoot restoreTreeStructure(FacesContext context, String viewId, String renderKitId)
          Deprecated.  
abstract  UIViewRoot restoreView(FacesContext context, String viewId, String renderKitId)
           
 StateManager.SerializedView saveSerializedView(FacesContext context)
          Deprecated.  
 Object saveView(FacesContext context)
          Returns an object that is sufficient to recreate the component tree that is the viewroot of the specified context.
 void writeState(FacesContext context, Object state)
          Associate the provided state object with the current response being generated.
 void writeState(FacesContext context, StateManager.SerializedView state)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STATE_SAVING_METHOD_PARAM_NAME

@JSFWebConfigParam(defaultValue="server",
                   expectedValues="server,client",
                   since="1.1")
public static final String STATE_SAVING_METHOD_PARAM_NAME
Define the state method to be used. There are two different options defined by the specification: "client" and "server" state.

When "client" state is configured, all state information required to create the tree is embedded within the data rendered to the client. Note that because data received from a remote client must always be treated as "tainted", care must be taken when using such data. Some StateManager implementations may use encryption to ensure that clients cannot modify the data, and that the data received on postback is therefore trustworthy.

When "server" state is configured, the data is saved somewhere "on the back end", and (at most) a token is embedded in the data rendered to the user.

See Also:
Constant Field Values

STATE_SAVING_METHOD_CLIENT

public static final String STATE_SAVING_METHOD_CLIENT
See Also:
Constant Field Values

STATE_SAVING_METHOD_SERVER

public static final String STATE_SAVING_METHOD_SERVER
See Also:
Constant Field Values
Constructor Detail

StateManager

public StateManager()
Method Detail

saveSerializedView

public StateManager.SerializedView saveSerializedView(FacesContext context)
Deprecated. 

Invokes getTreeStructureToSave and getComponentStateToSave, then return an object that wraps the two resulting objects. This object can then be passed to method writeState.

Deprecated; use saveView instead.


saveView

public Object saveView(FacesContext context)
Returns an object that is sufficient to recreate the component tree that is the viewroot of the specified context.

The return value is suitable for passing to method writeState.

Since:
1.2

getTreeStructureToSave

protected Object getTreeStructureToSave(FacesContext context)
Deprecated. 

Return data that is sufficient to recreate the component tree that is the viewroot of the specified context, but without restoring the state in the components.

Using this data, a tree of components which has the same "shape" as the original component tree can be recreated. However the component instances themselves will have only their default values, ie their member fields will not have been set to the original values.

Deprecated; use saveView instead.


getComponentStateToSave

protected Object getComponentStateToSave(FacesContext context)
Deprecated. 

Return data that can be applied to a component tree created using the "getTreeStructureToSave" method.

Deprecated; use saveView instead.


writeState

public void writeState(FacesContext context,
                       StateManager.SerializedView state)
                throws IOException
Deprecated. 

Associate the provided state object with the current response being generated.

When client-side state is enabled, it is expected that method writes the data contained in the state parameter to the response somehow.

When server-side state is enabled, at most a "token" is expected to be written.

Deprecated; use writeState(FacesContext, Object) instead. This method was abstract in JSF1.1, but is now an empty non-abstract method so that old classes that implement this method continue to work, while new classes can just override the new writeState method rather than this one.

Throws:
IOException

writeState

public void writeState(FacesContext context,
                       Object state)
                throws IOException
Associate the provided state object with the current response being generated.

When client-side state is enabled, it is expected that method writes the data contained in the state parameter to the response somehow.

When server-side state is enabled, at most a "token" is expected to be written.

This method should be overridden by subclasses. It is not abstract because a default implementation is provided that forwards to the old writeState method; this allows subclasses of StateManager written using the JSF1.1 API to continue to work.

Throws:
IOException
Since:
1.2

restoreView

public abstract UIViewRoot restoreView(FacesContext context,
                                       String viewId,
                                       String renderKitId)

restoreTreeStructure

protected UIViewRoot restoreTreeStructure(FacesContext context,
                                          String viewId,
                                          String renderKitId)
Deprecated. 


restoreComponentState

protected void restoreComponentState(FacesContext context,
                                     UIViewRoot viewRoot,
                                     String renderKitId)
Deprecated. 


isSavingStateInClient

public boolean isSavingStateInClient(FacesContext context)


Copyright © 2012 The Apache Software Foundation. All Rights Reserved.