From b7b304994dd037ced0df2d5d04c1aa4d41c6bb72 Mon Sep 17 00:00:00 2001
From: sin <sin@localhost>
Date: Wed, 17 Dec 2008 19:25:45 +0000
Subject: [PATCH] Integerated first part of the Fix for Issue# 262:Plugin for Collation/Internationalization
---
opends/src/server/org/opends/server/schema/TelephoneNumberSubstringMatchingRule.java | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/TelephoneNumberSubstringMatchingRule.java b/opends/src/server/org/opends/server/schema/TelephoneNumberSubstringMatchingRule.java
index 3f946fb..b790751 100644
--- a/opends/src/server/org/opends/server/schema/TelephoneNumberSubstringMatchingRule.java
+++ b/opends/src/server/org/opends/server/schema/TelephoneNumberSubstringMatchingRule.java
@@ -28,15 +28,14 @@
+import java.util.Collection;
+import java.util.Collections;
import java.util.List;
-import org.opends.server.admin.std.server.SubstringMatchingRuleCfg;
import org.opends.server.api.SubstringMatchingRule;
-import org.opends.server.config.ConfigException;
import org.opends.server.protocols.asn1.ASN1OctetString;
import org.opends.server.types.ByteString;
import org.opends.server.types.DirectoryException;
-import org.opends.server.types.InitializationException;
import static org.opends.server.schema.SchemaConstants.*;
import static org.opends.server.util.StaticUtils.*;
@@ -49,7 +48,7 @@
* specification calls for a very rigorous format, this is widely ignored so
* this matching will compare only numeric digits and strip out everything else.
*/
-public class TelephoneNumberSubstringMatchingRule
+class TelephoneNumberSubstringMatchingRule
extends SubstringMatchingRule
{
/**
@@ -66,10 +65,9 @@
/**
* {@inheritDoc}
*/
- public void initializeMatchingRule(SubstringMatchingRuleCfg configuration)
- throws ConfigException, InitializationException
+ public Collection<String> getAllNames()
{
- // No initialization is required.
+ return Collections.singleton(getName());
}
--
Gitblit v1.10.0