Package org.springframework.webflow.engine

Examples of org.springframework.webflow.engine.DecisionState


   * null
   * @return the fully initialized decision state instance
   */
  public State createDecisionState(String id, Flow flow, Action[] entryActions, Transition[] transitions,
      FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes) {
    DecisionState decisionState = new DecisionState(flow, id);
    configureCommonProperties(decisionState, entryActions, transitions, exceptionHandlers, exitActions, attributes);
    return decisionState;
  }
View Full Code Here


   * null
   * @return the fully initialized decision state instance
   */
  public State createDecisionState(String id, Flow flow, Action[] entryActions, Transition[] transitions,
      FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap<?> attributes) {
    DecisionState decisionState = new DecisionState(flow, id);
    configureCommonProperties(decisionState, entryActions, transitions, exceptionHandlers, exitActions, attributes);
    return decisionState;
  }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.engine.DecisionState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.