| | |
| | | // The attribute type used to reference the "objectclass" attribute. |
| | | private AttributeType objectClassAttributeType; |
| | | |
| | | // The authenticated users manager for the server. |
| | | private AuthenticatedUsers authenticatedUsers; |
| | | |
| | | // The configuration manager that will handle the server backends. |
| | | private BackendConfigManager backendConfigManager; |
| | | |
| | |
| | | new ConcurrentHashMap<String,ExtendedOperationHandler>(); |
| | | directoryServer.saslMechanismHandlers = |
| | | new ConcurrentHashMap<String,SASLMechanismHandler>(); |
| | | directoryServer.authenticatedUsers = new AuthenticatedUsers(); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the authenticated users manager for the Directory Server. |
| | | * |
| | | * @return The authenticated users manager for the Directory Server. |
| | | */ |
| | | public static AuthenticatedUsers getAuthenticatedUsers() |
| | | { |
| | | assert debugEnter(CLASS_NAME, "getAuthenticatedUsers"); |
| | | |
| | | return directoryServer.authenticatedUsers; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Initializes the crypto manager for the Directory Server. |
| | | * |
| | | * @throws ConfigException If a configuration problem is identified while |