From 22094368c2865dcfb6daf8366425212b721a4657 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 05 Feb 2009 17:42:14 +0000
Subject: [PATCH] Merge ASN1 branch to trunk

---
 opends/src/server/org/opends/server/api/ApproximateMatchingRule.java |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java b/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java
index 7a7c557..2017afb 100644
--- a/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java
+++ b/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java
@@ -28,9 +28,8 @@
 
 
 
-import org.opends.server.types.ByteString;
 import org.opends.server.types.ConditionResult;
-
+import org.opends.server.types.ByteSequence;
 
 
 /**
@@ -58,8 +57,8 @@
    * @return  {@code true} if the provided values are approximately
    *          equal, or {@code false} if not.
    */
-  public abstract boolean approximatelyMatch(ByteString value1,
-                                             ByteString value2);
+  public abstract boolean approximatelyMatch(ByteSequence value1,
+                                             ByteSequence value2);
 
 
 
@@ -82,8 +81,8 @@
    *          if it does not match, or {@code UNDEFINED} if the result
    *          is undefined.
    */
-  public ConditionResult valuesMatch(ByteString attributeValue,
-                                     ByteString assertionValue)
+  public ConditionResult valuesMatch(ByteSequence attributeValue,
+                                     ByteSequence assertionValue)
   {
     if (approximatelyMatch(attributeValue, assertionValue))
     {

--
Gitblit v1.10.0