diff --git a/spring-webflow/src/main/java/org/springframework/webflow/util/DispatchMethodInvoker.java b/spring-webflow/src/main/java/org/springframework/webflow/action/DispatchMethodInvoker.java similarity index 98% rename from spring-webflow/src/main/java/org/springframework/webflow/util/DispatchMethodInvoker.java rename to spring-webflow/src/main/java/org/springframework/webflow/action/DispatchMethodInvoker.java index d1f58b74..a0dcc025 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/util/DispatchMethodInvoker.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/DispatchMethodInvoker.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.webflow.util; +package org.springframework.webflow.action; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; @@ -32,7 +32,7 @@ import org.springframework.util.CachingMapDecorator; * @author Keith Donald * @author Ben Hale */ -public class DispatchMethodInvoker { +class DispatchMethodInvoker { /** * The target object to dispatch to. diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java b/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java index 645d7373..32519bbf 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/FormAction.java @@ -33,7 +33,6 @@ import org.springframework.web.bind.WebDataBinder; import org.springframework.webflow.execution.Event; import org.springframework.webflow.execution.RequestContext; import org.springframework.webflow.execution.ScopeType; -import org.springframework.webflow.util.DispatchMethodInvoker; /** * Multi-action that implements common logic dealing with input forms. This class leverages the Spring Web data binding diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/MultiAction.java b/spring-webflow/src/main/java/org/springframework/webflow/action/MultiAction.java index 4ce9adb4..9c6c6aa6 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/action/MultiAction.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/MultiAction.java @@ -18,7 +18,6 @@ package org.springframework.webflow.action; import org.springframework.util.Assert; import org.springframework.webflow.execution.Event; import org.springframework.webflow.execution.RequestContext; -import org.springframework.webflow.util.DispatchMethodInvoker; /** * Action implementation that bundles two or more action execution methods into a single class. Action execution methods diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/package.html b/spring-webflow/src/main/java/org/springframework/webflow/action/package.html index 677da84e..e520c440 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/action/package.html +++ b/spring-webflow/src/main/java/org/springframework/webflow/action/package.html @@ -8,8 +8,5 @@ When implementing custom actions, consider subclassing {@link org.springframewor Alternatively, you could also subclass {@link org.springframework.webflow.action.MultiAction} to bundle several action execution methods in a single class.
--The {@link org.springframework.webflow.action.FormAction} provides powerful input form handling functionality. -