Package org.springframework.webflow.action


package org.springframework.webflow.action
Common action implementations invokable by flow definitions.

When implementing custom actions, consider subclassing AbstractAction. Alternatively, you could also subclass MultiAction to bundle several action execution methods in a single class.

  • Class
    Description
    Base action that provides assistance commonly needed by action implementations.
    An action that will execute an ordered chain of other actions when executed.
    Default method resolver used by the MultiAction class.
    An action that evaluates an expression and optionally exposes its result.
    A convenience support class assisting in the creation of Event objects.
    An action that sends an external redirect when executed.
    An action that sends a flow definition redirect when executed.
    Multi-action that implements common logic dealing with input forms.
    Convenience helper that encapsulates logic on how to retrieve and expose form objects and associated errors to and from a flow execution request context.
    Action implementation that bundles two or more action execution methods into a single class.
    Strategy interface used by the MultiAction to map a request context to the name of an action execution method.
    An action that sets a special attribute that views use to render partial views called "fragments", instead of the entire view.
    A strategy for creating an Event object from an arbitrary object such as an expression evaluation result or bean method return value.
    Helper that selects the ResultEventFactory to use for a particular result object.
    Result object-to-event adapter interface that tries to do a sensible conversion of the result object into a web flow event.
    An action that sets an attribute in a scope when executed.
    Default implementation of the resultObject-to-event mapping interface.
    Simple adapter that adapts a view factory render cycle to the action interface.