Package org.springframework.webflow.conversation.impl

Examples of org.springframework.webflow.conversation.impl.SessionBindingConversationManager


    }
    return rep;
  }

  private ConversationManager createConversationManager() {
    SessionBindingConversationManager conversationManager = new SessionBindingConversationManager();
    if (maxFlowExecutions != null) {
      conversationManager.setMaxConversations(maxFlowExecutions.intValue());
    }
    return conversationManager;
  }
View Full Code Here


    return rep;
  }

  private ConversationManager createConversationManager() {
    if (conversationManager == null) {
      conversationManager = new SessionBindingConversationManager();
      if (maxFlowExecutions != null) {
        ((SessionBindingConversationManager) conversationManager).setMaxConversations(maxFlowExecutions);
      }
    }
    return this.conversationManager;
View Full Code Here

  }

  private ConversationManager getConversationManager() {
    ConversationManager manager = this.conversationManager;
    if (manager == null) {
      manager = new SessionBindingConversationManager();
    }
    if (this.maxFlowExecutions != null && manager instanceof SessionBindingConversationManager) {
      ((SessionBindingConversationManager) manager).setMaxConversations(this.maxFlowExecutions);
    }
    return manager;
View Full Code Here

TOP

Related Classes of org.springframework.webflow.conversation.impl.SessionBindingConversationManager

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.