diff --git a/source/java/org/alfresco/web/config/WebClientConfigBootstrap.java b/source/java/org/alfresco/web/config/WebClientConfigBootstrap.java index 0ce6b38e37..b2cceb3926 100644 --- a/source/java/org/alfresco/web/config/WebClientConfigBootstrap.java +++ b/source/java/org/alfresco/web/config/WebClientConfigBootstrap.java @@ -34,15 +34,25 @@ import org.springframework.context.ApplicationContextAware; */ public class WebClientConfigBootstrap implements ApplicationContextAware { + /** The application context */ private ApplicationContext applicationContext; + /** List of configs */ private List configs; + /** + * Set the configs + * + * @param configs the configs + */ public void setConfigs(List configs) { this.configs = configs; } + /** + * Initialisation method + */ public void init() { if (this.applicationContext.containsBean("webClientConfigService") == true) @@ -50,16 +60,10 @@ public class WebClientConfigBootstrap implements ApplicationContextAware ConfigService configService = (ConfigService)this.applicationContext.getBean("webClientConfigService"); if (configService != null && this.configs != null && this.configs.size() != 0) { - System.out.println("****************************************"); UrlConfigSource configSource = new UrlConfigSource(this.configs); configService.appendConfig(configSource); } } - else - { - - System.out.println("$$$$$$$$$$$$$$$$$$$$$$$$$$$$"); - } } public void setApplicationContext(ApplicationContext applicationContext) throws BeansException