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/ExtensibleMatchingRule.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/api/ExtensibleMatchingRule.java b/opends/src/server/org/opends/server/api/ExtensibleMatchingRule.java
index 4c54a99..2f586b2 100644
--- a/opends/src/server/org/opends/server/api/ExtensibleMatchingRule.java
+++ b/opends/src/server/org/opends/server/api/ExtensibleMatchingRule.java
@@ -37,7 +37,7 @@
/**
- * This class defines the set of methods and structures that must be
+ * This interface defines the set of methods that must be
* implemented by a Directory Server module that implements an
* Extensible matching rule.
*/
@@ -46,7 +46,7 @@
mayInstantiate = false,
mayExtend = true,
mayInvoke = false)
-public abstract class ExtensibleMatchingRule extends MatchingRule
+public interface ExtensibleMatchingRule extends MatchingRule
{
/**
* Returns a collection of extensible indexers associated with this
@@ -58,7 +58,7 @@
* @return The collection of extensible indexers associated with
* this matching rule.
*/
- public abstract Collection<ExtensibleIndexer> getIndexers(
+ Collection<ExtensibleIndexer> getIndexers(
IndexConfig config);
@@ -79,6 +79,6 @@
* @throws DirectoryException
* If an error occurs while generating the index query.
*/
- public abstract <T> T createIndexQuery(ByteSequence assertionValue,
+ <T> T createIndexQuery(ByteSequence assertionValue,
IndexQueryFactory<T> factory) throws DirectoryException;
-}
\ No newline at end of file
+}
--
Gitblit v1.10.0