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

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


  public void testSetTimeout() {
    MockHttpSession session = new MockHttpSession();
    MockHttpServletRequest request = new MockHttpServletRequest();
    request.setSession(session);
    request.setParameter(mockConversationName, mockConversationId);
    HttpConversationContextManagerProvider managerProvider = new DefaultHttpConversationContextManagerProvider();
    managerProvider.setConversationContextFactory(new DefaultConversationContextFactory());
    managerProvider.setMonitoringFrequency(1L);
    managerProvider.init();
    MockConversationAdapter.init(request, managerProvider);
    ConversationContext context = ConversationUtil.begin(mockConversationName, 50L);
    context.addTimeoutListener(this);
    context.setMaxIdleTime(50L);
    try {
View Full Code Here

TOP

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

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.