componentManager = (ComponentManager) cl.loadClass(cmClass).newInstance();
componentManager.setPropertyMgr(propertyMgr);
componentManager.init();
loggingManager.info("JaWEManager -> Working with '" + cmClass + "' implementation of Component Manager");
} catch (Throwable ex) {
componentManager = new ComponentManager();
componentManager.init();
if (JaWE.getJaWEVersion() != JaWE.COMMUNITY_VERSION) {
String msg = "JaWEManger -> Problems while instantiating Component Manager class '" + cmClass + "' - using default implementation!";
loggingManager.error(msg, ex);
} else {