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

Examples of com.google.code.rees.scope.conversation.processing.ConversationPostProcessorWrapper


   * @param postProcessor
   * @param conversationConfig
   * @param conversationId
   */
  public void addPostProcessor(ConversationPostProcessor postProcessor, ConversationConfiguration conversationConfig, String conversationId) {
    ConversationPostProcessorWrapper wrapper = this.postProcessorFactory.create(this, postProcessor, conversationConfig, conversationId);
    this.postProcessors.add(wrapper);
  }
View Full Code Here


   * @param postProcessor
   * @param conversationConfig
   * @param conversationId
   */
  public void addPostProcessor(ConversationPostProcessor postProcessor, ConversationClassConfiguration conversationConfig, String conversationId) {
    ConversationPostProcessorWrapper wrapper = this.postProcessorFactory.create(this, postProcessor, conversationConfig, conversationId);
    this.postProcessors.add(wrapper);
  }
View Full Code Here

   * @param postProcessor
   * @param conversationConfig
   * @param conversationId
   */
  public void addPostProcessor(ConversationPostProcessor postProcessor, ConversationConfiguration conversationConfig, String conversationId) {
    ConversationPostProcessorWrapper wrapper = this.postProcessorFactory.create(this, postProcessor, conversationConfig, conversationId);
    this.postProcessors.add(wrapper);
  }
View Full Code Here

   * @param postProcessor
   * @param conversationConfig
   * @param conversationId
   */
  public void addPostProcessor(ConversationPostProcessor postProcessor, ConversationClassConfiguration conversationConfig, String conversationId) {
    ConversationPostProcessorWrapper wrapper = this.postProcessorFactory.create(this, postProcessor, conversationConfig, conversationId);
    this.postProcessors.add(wrapper);
  }
View Full Code Here

   * @param postProcessor
   * @param conversationConfig
   * @param conversationId
   */
  public void addPostProcessor(ConversationPostProcessor postProcessor, ConversationClassConfiguration conversationConfig, String conversationId) {
    ConversationPostProcessorWrapper wrapper = this.postProcessorFactory.create(this, postProcessor, conversationConfig, conversationId);
    this.postProcessors.add(wrapper);
  }
View Full Code Here

   * @param postProcessor
   * @param conversationConfig
   * @param conversationId
   */
  public void addPostProcessor(ConversationPostProcessor postProcessor, ConversationConfiguration conversationConfig, String conversationId) {
    ConversationPostProcessorWrapper wrapper = this.postProcessorFactory.create(this, postProcessor, conversationConfig, conversationId);
    this.postProcessors.add(wrapper);
  }
View Full Code Here

TOP

Related Classes of com.google.code.rees.scope.conversation.processing.ConversationPostProcessorWrapper

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.