diff --git a/spring-binding/src/main/java/org/springframework/binding/collection/MapAccessor.java b/spring-binding/src/main/java/org/springframework/binding/collection/MapAccessor.java index b13092e1..1b8278d8 100644 --- a/spring-binding/src/main/java/org/springframework/binding/collection/MapAccessor.java +++ b/spring-binding/src/main/java/org/springframework/binding/collection/MapAccessor.java @@ -52,6 +52,7 @@ public class MapAccessor implements MapAdaptable { * Returns a value in the map, returning null if the attribute is not present. * @param key the key * @return the value + * @since 1.0.5 */ public Object get(Object key) { return map.get(key); diff --git a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java index dec721b2..aacf77e1 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java @@ -44,7 +44,7 @@ public class SessionBindingConversationManager implements ConversationManager { /** * The name of the session attribute that will hold the conversation container used by this conversation manager. - * + *
* To support multiple independent conversation containers in the same web application, for example, for use with * multiple flow executors each configured with their own session-binding conversation manager, set this field's * value to something unique. @@ -65,6 +65,7 @@ public class SessionBindingConversationManager implements ConversationManager { /** * Returns the used generator for conversation ids. Defaults to {@link RandomGuidUidGenerator}. + * @since 1.0.1 */ public UidGenerator getConversationIdGenerator() { return conversationIdGenerator; @@ -79,6 +80,7 @@ public class SessionBindingConversationManager implements ConversationManager { /** * Returns the maximum number of allowed concurrent conversations. The default is 5. + * @since 1.0.1 */ public int getMaxConversations() { return maxConversations; @@ -104,6 +106,7 @@ public class SessionBindingConversationManager implements ConversationManager { * binding conversation managers are used in the same web application to back independent flow executors, this value * should be unique among them. * @param sessionKey the session key + * @since 1.0.5 */ public void setSessionKey(String sessionKey) { this.sessionKey = sessionKey; diff --git a/spring-webflow/src/main/java/org/springframework/webflow/test/MockAction.java b/spring-webflow/src/main/java/org/springframework/webflow/test/MockAction.java index 04d66721..ecfb6ca1 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/test/MockAction.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/test/MockAction.java @@ -25,13 +25,15 @@ import org.springframework.webflow.test.execution.AbstractXmlFlowExecutionTests; /** * A trivial stub action implementation that can be parameterized to return a particular action execution result. Useful * for simulating different action results a flow should be capable of responding to. - * + *
* Instances of this class can be conveniently installed in the bean factory that hosts the Web Flow action
* implementations in a test environment by overriding registerMockServices on
* {@link AbstractExternalizedFlowExecutionTests}. If you are using a XML-based flow definition with a flow-local
* context to host your actions, consider overriding registerLocalMockServices on
* {@link AbstractXmlFlowExecutionTests} to install mock instances.
*
+ * @since 1.0.5
+ *
* @author Keith Donald
*/
public class MockAction implements Action {