Package com.google.code.rees.scope.conversation.context

Examples of com.google.code.rees.scope.conversation.context.DefaultConversationContextManager


        HttpSession session = request.getSession();
        Object ctxMgr = null;
        ctxMgr = session
                .getAttribute(ConversationConstants.CONVERSATION_CONTEXT_MANAGER_KEY);
        if (ctxMgr == null) {
            ConversationContextManager newCtxMgr = new DefaultConversationContextManager();
            newCtxMgr.setContextFactory(this.conversationContextFactory);
            newCtxMgr.setMaxInstances(this.maxInstances);
            newCtxMgr.setMonitoringFrequency(this.monitoringFrequency);
            ctxMgr = newCtxMgr;
            session.setAttribute(
                    ConversationConstants.CONVERSATION_CONTEXT_MANAGER_KEY,
                    ctxMgr);
        }
View Full Code Here

TOP

Related Classes of com.google.code.rees.scope.conversation.context.DefaultConversationContextManager

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.