From feb5d90ec016c99712f19c5485cf7633cd38f111 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 23 Mar 2007 14:26:04 +0000
Subject: [PATCH] Merge admin framework from config-prototype-branch onto trunk.

---
 opends/src/server/org/opends/server/extensions/AnonymousSASLMechanismHandler.java |   11 ++++-------
 1 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/AnonymousSASLMechanismHandler.java b/opends/src/server/org/opends/server/extensions/AnonymousSASLMechanismHandler.java
index 0dcc837..403086d 100644
--- a/opends/src/server/org/opends/server/extensions/AnonymousSASLMechanismHandler.java
+++ b/opends/src/server/org/opends/server/extensions/AnonymousSASLMechanismHandler.java
@@ -28,8 +28,8 @@
 
 
 
+import org.opends.server.admin.std.server.SASLMechanismHandlerCfg;
 import org.opends.server.api.SASLMechanismHandler;
-import org.opends.server.config.ConfigEntry;
 import org.opends.server.config.ConfigException;
 import org.opends.server.core.BindOperation;
 import org.opends.server.core.DirectoryServer;
@@ -55,11 +55,8 @@
  * then that trace information will be written to the server error log.
  */
 public class AnonymousSASLMechanismHandler
-       extends SASLMechanismHandler
+       extends SASLMechanismHandler<SASLMechanismHandlerCfg>
 {
-
-
-
   /**
    * Creates a new instance of this SASL mechanism handler.  No initialization
    * should be done in this method, as it should all be performed in the
@@ -68,7 +65,6 @@
   public AnonymousSASLMechanismHandler()
   {
     super();
-
   }
 
 
@@ -77,7 +73,8 @@
    * {@inheritDoc}
    */
   @Override()
-  public void initializeSASLMechanismHandler(ConfigEntry configEntry)
+  public void initializeSASLMechanismHandler(SASLMechanismHandlerCfg
+                                                  configuration)
          throws ConfigException, InitializationException
   {
     // No real implementation is required.  Simply register with the Directory

--
Gitblit v1.10.0