Package net.sf.collabreview.agents

Examples of net.sf.collabreview.agents.AgentManager


  public void configureAgentManager(ConfigurationConfigurableCollabReview collabReview, ConfigurationData config) throws Exception {
    if (config == null) {
      logger.warn("No AgentManager <agents/> configured");
      return;
    }
    AgentManager agentManager = new AgentManager();
    logger.debug("AgentManager created");
    agentManager.configure(collabReview, config);
    collabReview.setAgentManager(agentManager);
  }
View Full Code Here


public class Eda {
  private static final Log logger = LogFactory.getLog(Eda.class);

  public static void main(String[] args) {
    CollabReview collabReview = AutoConfigurator.newConfiguredApplication();
    AgentManager agentManager = collabReview.getAgentManager();
    try {
      Thread.sleep(15000);
    } catch (InterruptedException e) {
    }
View Full Code Here

TOP

Related Classes of net.sf.collabreview.agents.AgentManager

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.