public static AttributableUtil valueOf(final String name) {
return new AttributableUtil(AttributableType.valueOf(name));
}
public static AttributableUtil getInstance(final ObjectClass objectClass) {
AttributableType type = null;
if (ObjectClass.ACCOUNT.equals(objectClass)) {
type = AttributableType.USER;
}
if (ObjectClass.GROUP.equals(objectClass)) {
type = AttributableType.ROLE;