From 76c87042a9fb3ac7f1a25cc9d836da521eb8547f Mon Sep 17 00:00:00 2001
From: sin <sin@localhost>
Date: Tue, 17 Feb 2009 16:11:27 +0000
Subject: [PATCH] issue# 3774: Sort control doesn't work for collation matching rules
---
opends/src/server/org/opends/server/api/ApproximateMatchingRule.java | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java b/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java
index 2017afb..48f9958 100644
--- a/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java
+++ b/opends/src/server/org/opends/server/api/ApproximateMatchingRule.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2006-2008 Sun Microsystems, Inc.
+ * Copyright 2006-2009 Sun Microsystems, Inc.
*/
package org.opends.server.api;
@@ -43,7 +43,8 @@
mayExtend=true,
mayInvoke=false)
public abstract class ApproximateMatchingRule
- extends MatchingRule
+ extends AbstractMatchingRule
+ implements MatchingRule
{
/**
* Indicates whether the two provided normalized values are
@@ -81,6 +82,7 @@
* if it does not match, or {@code UNDEFINED} if the result
* is undefined.
*/
+ @Override
public ConditionResult valuesMatch(ByteSequence attributeValue,
ByteSequence assertionValue)
{
--
Gitblit v1.10.0