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