From 68ceb8ea8c8d2c2745f1c2449635764f4a51a993 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 28 Jun 2007 23:54:43 +0000
Subject: [PATCH] Migrate the key and trust manager provider configuration to the admin framework.

---
 opends/src/server/org/opends/server/extensions/NullKeyManagerProvider.java |   27 +--------------------------
 1 files changed, 1 insertions(+), 26 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/NullKeyManagerProvider.java b/opends/src/server/org/opends/server/extensions/NullKeyManagerProvider.java
index 50bbab0..3425e40 100644
--- a/opends/src/server/org/opends/server/extensions/NullKeyManagerProvider.java
+++ b/opends/src/server/org/opends/server/extensions/NullKeyManagerProvider.java
@@ -32,7 +32,6 @@
 
 import org.opends.server.admin.std.server.KeyManagerCfg;
 import org.opends.server.api.KeyManagerProvider;
-import org.opends.server.config.ConfigEntry;
 import org.opends.server.config.ConfigException;
 import org.opends.server.types.DirectoryException;
 import org.opends.server.types.InitializationException;
@@ -46,8 +45,7 @@
  * other key manager provider has been defined in the server configuration.
  */
 public class NullKeyManagerProvider
-       extends KeyManagerProvider
-{
+       extends KeyManagerProvider<KeyManagerCfg>{
 
 
 
@@ -64,29 +62,6 @@
 
 
   /**
-   * Initializes this key manager provider based on the information in the
-   * provided configuration entry.
-   *
-   * @param  configEntry  The configuration entry that contains the information
-   *                      to use to initialize this key manager provider.
-   *
-   * @throws  ConfigException  If an unrecoverable problem arises in the
-   *                           process of performing the initialization as a
-   *                           result of the server configuration.
-   *
-   * @throws  InitializationException  If a problem occurs during initialization
-   *                                   that is not related to the server
-   *                                   configuration.
-   */
-  public void initializeKeyManagerProvider(ConfigEntry configEntry)
-         throws ConfigException, InitializationException
-  {
-    // No implementation is required.
-  }
-
-
-
-  /**
    * {@inheritDoc}
    */
   @Override

--
Gitblit v1.10.0