| | |
| | | ObjectClass objectClass = schema.getObjectClass(oc.toLowerCase()); |
| | | if (objectClass != null) |
| | | { |
| | | for (AttributeType attr : objectClass.getRequiredAttributeChain()) |
| | | for (AttributeType attr : objectClass.getRequiredAttributes()) |
| | | { |
| | | String attrName = attr.getNameOrOID(); |
| | | String lowerCase = attrName.toLowerCase(); |
| | |
| | | ObjectClass objectClass = schema.getObjectClass(oc); |
| | | if (objectClass != null) |
| | | { |
| | | for (AttributeType attr : objectClass.getRequiredAttributeChain()) |
| | | for (AttributeType attr : objectClass.getRequiredAttributes()) |
| | | { |
| | | attributes.add(attr.getNameOrOID().toLowerCase()); |
| | | } |