ConfigInterface configManager = this.getConfigManager();
String xml = configManager.getConfigItem(JpAvatarSystemConstants.CONFIG_ITEM);
if (xml == null) {
throw new ApsSystemException("Configuration item not present: " + JpAvatarSystemConstants.CONFIG_ITEM);
}
AvatarConfigDOM configDOM = new AvatarConfigDOM();
this.setConfig(configDOM.extractConfig(xml));
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "loadConfigs");
throw new ApsSystemException("Error on AvatarManager startup", t);
}
}