ConfigInterface configManager = this.getConfigManager();
String xml = configManager.getConfigItem(JpUserRegSystemConstants.USER_REG_CONFIG_ITEM);
if (xml == null) {
throw new ApsSystemException("Configuration Item not found: " + JpUserRegSystemConstants.USER_REG_CONFIG_ITEM);
}
UserRegConfigDOM userRegConfigDom = new UserRegConfigDOM();
IUserRegConfig config = userRegConfigDom.extractConfig(xml);
this.setUserRegConfig(config);
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "loadConfigs");
throw new ApsSystemException("Error in init", t);
}