diff --git a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java index 3ebdb462..6961e92a 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java @@ -1,5 +1,5 @@ /* - * Copyright 2004-2012 the original author or authors. + * Copyright 2004-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,16 +22,19 @@ import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; + import org.springframework.webflow.conversation.Conversation; import org.springframework.webflow.conversation.ConversationId; import org.springframework.webflow.conversation.ConversationParameters; import org.springframework.webflow.conversation.NoSuchConversationException; /** - * Container for conversations that is stored in the session. When the session expires this container will go with it, - * implicitly expiring all contained conversations. - *
- * This is an internal helper class of the {@link SessionBindingConversationManager}. + * Container for conversations that is stored in the session. When the session + * expires this container will go with it, implicitly expiring all contained + * conversations. + * + *
This is an internal helper class of the
+ * {@link SessionBindingConversationManager}.
*
* @author Erwin Vervaet
*/
@@ -39,29 +42,22 @@ public class ConversationContainer implements Serializable {
private static final Log logger = LogFactory.getLog(ConversationContainer.class);
- /**
- * Maximum number of conversations in this container. -1 for unlimited.
- */
+ /** Maximum number of conversations in this container. -1 for unlimited. */
private int maxConversations;
- /**
- * The key of this conversation container in the session.
- */
+ /** The key of this conversation container in the session. */
private String sessionKey;
- /**
- * The contained conversations. A list of {@link ContainedConversation} objects.
- */
+ /** The contained conversations. A list of {@link ContainedConversation} objects. */
private List