Class FlowExecutionOutcome

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

public class FlowExecutionOutcome extends Object
An outcome returned by a flow execution when it ends.
Author:
Keith Donald
  • Constructor Details

    • FlowExecutionOutcome

      public FlowExecutionOutcome(String id, AttributeMap<Object> output)
      Creates a new flow execution outcome
      Parameters:
      id - the outcome id
      output - the output returned by the execution
  • Method Details

    • getId

      public String getId()
      Return the outcome identifier.
      Returns:
      the outcome that was reached by the flow execution
    • getOutput

      public AttributeMap<Object> getOutput()
      Returns the output returned by the flow execution.
      Returns:
      the output that was returned
    • toString

      public String toString()
      Overrides:
      toString in class Object