| | |
| | | appendOIDs(buffer, "SUP", objectClassesToSchemaElements(objectClass.getSuperiorClasses())); |
| | | appendIfNotNull(buffer, " ", objectClass.getObjectClassType()); |
| | | appendOIDs(buffer, "MUST", attributeTypesToSchemaElements(objectClass.getDeclaredRequiredAttributes())); |
| | | appendOIDs(buffer, "MAY", attributeTypesToSchemaElements(objectClass.getOptionalAttributes())); |
| | | appendOIDs(buffer, "MAY", attributeTypesToSchemaElements(objectClass.getDeclaredOptionalAttributes())); |
| | | appendExtraProperties(buffer, objectClass.getExtraProperties()); |
| | | buffer.append(")"); |
| | | |