From e28ddc3ed27d4352ddc7c476f4e5208b2eb27251 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 06 Mar 2014 23:25:34 +0000
Subject: [PATCH] OPENDJ-1308 Migrate schema support
---
opendj3-server-dev/src/server/org/opends/server/api/ExtensibleMatchingRule.java | 23 +++++++++--------------
1 files changed, 9 insertions(+), 14 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/api/ExtensibleMatchingRule.java b/opendj3-server-dev/src/server/org/opends/server/api/ExtensibleMatchingRule.java
index 5a81398..4c2abe5 100644
--- a/opendj3-server-dev/src/server/org/opends/server/api/ExtensibleMatchingRule.java
+++ b/opendj3-server-dev/src/server/org/opends/server/api/ExtensibleMatchingRule.java
@@ -26,15 +26,12 @@
*/
package org.opends.server.api;
-
-
import java.util.Collection;
import org.forgerock.opendj.ldap.ByteSequence;
import org.forgerock.opendj.ldap.DecodeException;
-import org.opends.server.types.IndexConfig;
-
-
+import org.forgerock.opendj.ldap.spi.IndexQueryFactory;
+import org.forgerock.opendj.ldap.spi.IndexingOptions;
/**
* This interface defines the set of methods that must be
@@ -49,17 +46,15 @@
public interface ExtensibleMatchingRule extends MatchingRule
{
/**
- * Returns a collection of extensible indexers associated with this
- * matching rule.
+ * Returns a collection of extensible indexers associated with this matching
+ * rule.
*
- * @param config
- * The index configuration to be used by this matching
- * rule.
- * @return The collection of extensible indexers associated with
- * this matching rule.
+ * @param indexingOptions
+ * The indexing options to be used by this matching rule.
+ * @return The collection of extensible indexers associated with this matching
+ * rule.
*/
- Collection<ExtensibleIndexer> getIndexers(
- IndexConfig config);
+ Collection<ExtensibleIndexer> getIndexers(IndexingOptions indexingOptions);
--
Gitblit v1.10.0