String attributeManager = idpConfiguration.getAttributeManager();
if (attributeManager != null && !"".equals(attributeManager)) {
Class<?> clazz = SecurityActions.loadClass(getClass(), attributeManager);
if (clazz == null)
throw new RuntimeException(logger.classNotLoadedError(attributeManager));
AttributeManager delegate = (AttributeManager) clazz.newInstance();
this.attribManager.setDelegate(delegate);
}
// Get the role generator
String roleGeneratorAttribute = idpConfiguration.getRoleGenerator();