Attribute attr = attrs.get(attrName);
if (attr != null)
{
IdentityObjectAttribute identityObjectAttribute = new SimpleAttribute(name);
NamingEnumeration values = attr.getAll();
while (values.hasMoreElements())
{
identityObjectAttribute.addValue(values.nextElement().toString());
}
attrsMap.put(name, identityObjectAttribute);
}
else