diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/FormObjectAccessor.java b/spring-webflow/src/main/java/org/springframework/webflow/action/FormObjectAccessor.java index 4311a4b2..f22bc456 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/action/FormObjectAccessor.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/FormObjectAccessor.java @@ -47,6 +47,8 @@ public class FormObjectAccessor { * We need to keep track of the 'current form object' using this attribute to be able to deal with the limitations * of some clients that can only deal with a single form backing object, e.g. Struts when using the Struts * FlowAction. + * + * @since 1.0.6 */ public static final String CURRENT_FORM_OBJECT_ATTRIBUTE = "currentFormObject"; diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowFacesUtils.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowFacesUtils.java index e8a5c2d8..93fb68ec 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowFacesUtils.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowFacesUtils.java @@ -42,21 +42,29 @@ public class FlowFacesUtils { * Note the flow executor object is used only at configuration time to extract other lower-level services needed by * the JSF integration (flow execution repository, flow execution factory). The runtime FlowExecutor interface is * never used by this JSF integration. + * + * @since 1.0.6 */ public static final String FLOW_EXECUTOR_BEAN_NAME = "flowExecutor"; /** * Bean name of a custom flow execution repository implementation. + * + * @since 1.0.6 */ public static final String FLOW_EXECUTION_REPOSITORY_BEAN_NAME = "flowExecutionRepository"; /** * Bean name of a custom flow definition locator implementation. + * + * @since 1.0.6 */ public static final String FLOW_DEFINITION_LOCATOR_BEAN_NAME = "flowDefinitionLocator"; /** * Bean name of a custom flow execution factory implementation. + * + * @since 1.0.6 */ public static final String FLOW_EXECUTION_FACTORY_BEAN_NAME = "flowExecutionFactory";