diff --git a/spring-faces/src/main/java/org/springframework/faces/webflow/FlowSerializedView.java b/spring-faces/src/main/java/org/springframework/faces/webflow/FlowSerializedView.java index c7874652..1c3d5d24 100644 --- a/spring-faces/src/main/java/org/springframework/faces/webflow/FlowSerializedView.java +++ b/spring-faces/src/main/java/org/springframework/faces/webflow/FlowSerializedView.java @@ -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;