From 2bf80e51262791cae4bea6553c4af052e96dc740 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 25 Jun 2007 00:06:03 +0000
Subject: [PATCH] Migrate the matching rule configuration to the admin framework.

---
 opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java |   17 ++++++++++++++---
 1 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java b/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java
index 1f5a7cb..bfe27ea 100644
--- a/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java
+++ b/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java
@@ -28,6 +28,10 @@
 
 
 
+import org.opends.server.admin.std.server.EqualityMatchingRuleCfg;
+import org.opends.server.config.ConfigException;
+import org.opends.server.types.InitializationException;
+
 import static org.opends.server.schema.SchemaConstants.*;
 import static org.opends.server.util.StaticUtils.*;
 
@@ -41,16 +45,23 @@
 public class KeywordEqualityMatchingRule
        extends WordEqualityMatchingRule
 {
-
-
-
   /**
    * Creates a new instance of this wordMatch matching rule.
    */
   public KeywordEqualityMatchingRule()
   {
     super();
+  }
 
+
+
+  /**
+   * {@inheritDoc}
+   */
+  public void initializeMatchingRule(EqualityMatchingRuleCfg configuration)
+         throws ConfigException, InitializationException
+  {
+    // No initialization is required.
   }
 
 

--
Gitblit v1.10.0