Spring Web Flow

org.springframework.webflow.execution
Class FlowExecutionOutcome

java.lang.Object
  extended by org.springframework.webflow.execution.FlowExecutionOutcome

public class FlowExecutionOutcome
extends java.lang.Object

An outcome returned by a flow execution when it ends.

Author:
Keith Donald

Constructor Summary
FlowExecutionOutcome(java.lang.String id, AttributeMap<java.lang.Object> output)
          Creates a new flow execution outcome
 
Method Summary
 java.lang.String getId()
          Return the outcome identifier.
 AttributeMap<java.lang.Object> getOutput()
          Returns the output returned by the flow execution.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FlowExecutionOutcome

public FlowExecutionOutcome(java.lang.String id,
                            AttributeMap<java.lang.Object> output)
Creates a new flow execution outcome

Parameters:
id - the outcome id
output - the output returned by the execution
Method Detail

getId

public java.lang.String getId()
Return the outcome identifier.

Returns:
the outcome that was reached by the flow execution

getOutput

public AttributeMap<java.lang.Object> getOutput()
Returns the output returned by the flow execution.

Returns:
the output that was returned

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

Spring Web Flow