javadoc
This commit is contained in:
@@ -4,13 +4,25 @@ import java.io.Serializable;
|
||||
|
||||
import org.springframework.core.style.ToStringCreator;
|
||||
|
||||
/**
|
||||
* Serialized UIViewRoot stored in view scope associated with a Web Flow View State.
|
||||
*
|
||||
* @author Jeremy Grelle
|
||||
*/
|
||||
public class FlowSerializedView implements Serializable {
|
||||
|
||||
private Object treeStructure;
|
||||
|
||||
private Object componentState;
|
||||
|
||||
private String viewId;
|
||||
|
||||
/**
|
||||
* Creates a new serialized view
|
||||
* @param viewId the view id
|
||||
* @param treeStructure the tree structure of the view
|
||||
* @param componentState the component state
|
||||
*/
|
||||
public FlowSerializedView(String viewId, Object treeStructure, Object componentState) {
|
||||
this.viewId = viewId;
|
||||
this.treeStructure = treeStructure;
|
||||
|
||||
Reference in New Issue
Block a user