From 2d7aad2c25507ea427980b54848c26594c607ae2 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 20 Feb 2014 11:20:22 +0000
Subject: [PATCH] OPENDJ-1308 Migrate schema support
---
opendj3-server-dev/src/server/org/opends/server/api/ExtensibleMatchingRule.java | 6 +++---
1 files changed, 3 insertions(+), 3 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 13865a6..5a81398 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
@@ -31,7 +31,7 @@
import java.util.Collection;
import org.forgerock.opendj.ldap.ByteSequence;
-import org.opends.server.types.DirectoryException;
+import org.forgerock.opendj.ldap.DecodeException;
import org.opends.server.types.IndexConfig;
@@ -76,9 +76,9 @@
* construct the index query.
* @return The index query appropriate for the provided attribute
* value assertion.
- * @throws DirectoryException
+ * @throws DecodeException
* If an error occurs while generating the index query.
*/
<T> T createIndexQuery(ByteSequence assertionValue,
- IndexQueryFactory<T> factory) throws DirectoryException;
+ IndexQueryFactory<T> factory) throws DecodeException;
}
--
Gitblit v1.10.0