switch (mapping.getIntMappingType()) {
case UserSchema:
case RoleSchema:
case MembershipSchema:
for (AbstractAttributable attributable : attributables) {
final AbstractAttr attr = attributable.getAttribute(mapping.getIntAttrName());
if (attr != null) {
if (attr.getUniqueValue() != null) {
values.add(attr.getUniqueValue());
} else if (attr.getValues() != null) {
values.addAll(attr.getValues());
}
}
LOG.debug("Retrieved attribute {}"
+ "\n* IntAttrName {}"