| | |
| | | // The group manager for the Directory Server. |
| | | private GroupManager groupManager; |
| | | |
| | | // The subentry manager for the Directory Server. |
| | | private SubentryManager subentryManager; |
| | | |
| | | // The configuration manager for identity mappers. |
| | | private IdentityMapperConfigManager identityMapperConfigManager; |
| | | |
| | |
| | | rootDNConfigManager.initializeRootDNs(); |
| | | |
| | | |
| | | // Initialize the subentry manager. |
| | | subentryManager = new SubentryManager(); |
| | | // The configuration backend has already been registered at this point |
| | | // so we need to handle it explicitly. |
| | | subentryManager.performBackendInitializationProcessing(configHandler); |
| | | |
| | | |
| | | // Initialize the group manager. |
| | | initializeGroupManager(); |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the Directory Server subentry manager. |
| | | * |
| | | * @return The Directory Server subentry manager. |
| | | */ |
| | | public static SubentryManager getSubentryManager() |
| | | { |
| | | return directoryServer.subentryManager; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Initializes the set of supported controls for the Directory Server. |
| | | * |
| | | * @throws ConfigException If there is a configuration problem with the |