From 097a791a23f8c8639e0a5a7801c8c7734d8d2aa7 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.
---
opendj-sdk/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java | 17 ++++++++++++++---
1 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java b/opendj-sdk/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java
index 1f5a7cb..bfe27ea 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/schema/KeywordEqualityMatchingRule.java
+++ b/opendj-sdk/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