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);