Package org.springframework.webflow.execution

Examples of org.springframework.webflow.execution.View


  private void updateHistory(RequestControlContext context) {
    TransitionDefinition transition = context.getCurrentTransition();
    History history = (History) transition.getAttributes().get("history");
    if (history == null || history == History.PRESERVE) {
      View currentView = context.getCurrentView();
      if (currentView != null && shouldRedirect(context)) {
        currentView.saveState();
      }
      context.updateCurrentFlowExecutionSnapshot();
    } else if (history == History.DISCARD) {
      context.removeCurrentFlowExecutionSnapshot();
    } else if (history == History.INVALIDATE) {
View Full Code Here

TOP

Related Classes of org.springframework.webflow.execution.View

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.