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

Examples of com.google.code.rees.scope.conversation.ConversationException


     
      if (LOG.isDebugEnabled()) {
        LOG.debug("An exception occurred while processing the conversations:  " + e.getMessage());
      }
     
      throw new ConversationException(e.getMessage());
    }
   
    if (LOG.isDebugEnabled()) {
      LOG.debug("...processing of conversations complete.");
    }
View Full Code Here


          conversationAdapter.addPostProcessor(new ConversationEndProcessor(), conversationConfig, conversationId);
        } else {
          conversationAdapter.getViewContext().put(conversationName, conversationId);
        }
      } else {
              throw new ConversationException("The following conversation name and id pair did not return an active ConversationContext:  Name: " + conversationName + ", ID:  " + conversationId + ".  This is likely due to the conversation having ended or expired.");
            }
    } else if (conversationConfig.isBeginAction(actionId)) {
      long maxIdleTime = conversationConfig.getMaxIdleTime(actionId);
      if (LOG.isDebugEnabled()) {
                LOG.debug("Beginning new " + conversationName+ " with max idle time of " + maxIdleTime / 1000 + " seconds for action " + actionId);
View Full Code Here

                        ScopeUtil.setFieldValues(action, actionConversationFields, conversationContext);
                    }
                   
                } else {
                 
                  throw new ConversationException("The following conversation name and id pair did not return an active ConversationContext:  Name: " + conversationName + ", ID:  " + conversationId + ".  This is likely due to the conversation having ended or expired.");
                 
                }

                if (conversationConfig.isEndAction(actionId)) {
                    conversationAdapter.addPostProcessor(new ConversationEndProcessor(), conversationConfig, conversationId);
View Full Code Here

TOP

Related Classes of com.google.code.rees.scope.conversation.ConversationException

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.