Spring Web Flow

org.springframework.webflow.action
Class FlowDefinitionRedirectAction

java.lang.Object
  extended by org.springframework.webflow.action.AbstractAction
      extended by org.springframework.webflow.action.FlowDefinitionRedirectAction
All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean, Action

public class FlowDefinitionRedirectAction
extends AbstractAction

An action that sends a flow definition redirect when executed.

Author:
Keith Donald

Field Summary
 
Fields inherited from class org.springframework.webflow.action.AbstractAction
logger
 
Constructor Summary
FlowDefinitionRedirectAction(Expression expression)
          Creates a new flow definition redirect action.
 
Method Summary
protected  Event doExecute(RequestContext context)
          Template hook method subclasses should override to encapsulate their specific action execution logic.
 
Methods inherited from class org.springframework.webflow.action.AbstractAction
afterPropertiesSet, doPostExecute, doPreExecute, error, error, execute, getActionNameForLogging, getEventFactorySupport, initAction, no, result, result, result, result, success, success, yes
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FlowDefinitionRedirectAction

public FlowDefinitionRedirectAction(Expression expression)
Creates a new flow definition redirect action.

Parameters:
expression - a encoded flow redirect expression
Method Detail

doExecute

protected Event doExecute(RequestContext context)
                   throws java.lang.Exception
Description copied from class: AbstractAction
Template hook method subclasses should override to encapsulate their specific action execution logic.

Specified by:
doExecute in class AbstractAction
Parameters:
context - the action execution context, for accessing and setting data in "flow scope" or "request scope"
Returns:
the action result event
Throws:
java.lang.Exception - an unrecoverable exception occured, either checked or unchecked

Spring Web Flow