issue# 1051:objectClass isn't returned with attrlist "*" for root DSE
| | |
| | | dseObjectClasses.put(topOC, OC_TOP); |
| | | |
| | | ObjectClass rootDSEOC = |
| | | DirectoryServer.getObjectClass(OC_ROOT_DSE_LC); |
| | | DirectoryServer.getObjectClass(OC_ROOT_DSE); |
| | | if (rootDSEOC == null) |
| | | { |
| | | rootDSEOC = DirectoryServer.getDefaultObjectClass(OC_ROOT_DSE); |
| | |
| | | * The name of the structural objectclass that will be used for the Directory |
| | | * Server root DSE entry. |
| | | */ |
| | | public static final String OC_ROOT_DSE = "ds-rootDSE"; |
| | | |
| | | |
| | | |
| | | /** |
| | | * The name of the structural objectclass that will be used for the Directory |
| | | * Server root DSE entry, formatted in all lowercase. |
| | | */ |
| | | public static final String OC_ROOT_DSE_LC = "ds-rootdse"; |
| | | public static final String OC_ROOT_DSE = "ds-root-dse"; |
| | | |
| | | |
| | | |