| | |
| | | import org.opends.server.api.CertificateMapper; |
| | | import org.opends.server.api.ChangeNotificationListener; |
| | | import org.opends.server.api.ClientConnection; |
| | | import org.opends.server.api.CompressedSchema; |
| | | import org.opends.server.api.ConfigAddListener; |
| | | import org.opends.server.api.ConfigChangeListener; |
| | | import org.opends.server.api.ConfigDeleteListener; |
| | |
| | | // The crypto manager for the Directory Server. |
| | | private CryptoManager cryptoManager; |
| | | |
| | | // The default compressed schema manager. |
| | | private DefaultCompressedSchema compressedSchema; |
| | | |
| | | // The environment configuration for the Directory Server. |
| | | private DirectoryEnvironmentConfig environmentConfig; |
| | | |
| | |
| | | e.getLocalizedMessage()); |
| | | throw new InitializationException(message); |
| | | } |
| | | |
| | | compressedSchema = new DefaultCompressedSchema(); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Retrieves the default compressed schema manager for the Directory Server. |
| | | * |
| | | * @return The default compressed schema manager for the Directory Server. |
| | | */ |
| | | public static CompressedSchema getDefaultCompressedSchema() |
| | | { |
| | | return directoryServer.compressedSchema; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Gets all of the add, delete, and change listeners from the provided |
| | | * configuration entry and all of its descendants and puts them in the |
| | | * appropriate lists. |