attributeName = claimURI;
}
Attribute currentUpdatedAttribute = new BasicAttribute(attributeName);
/*if updated attribute value is null, remove its values.*/
if (EMPTY_ATTRIBUTE_STRING.equals(claimEntry.getValue())) {
currentUpdatedAttribute.clear();
} else {
currentUpdatedAttribute.add(claimEntry.getValue());
}
updatedAttributes.put(currentUpdatedAttribute);
}