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/SubstringMatchingRule.java | 11 ++++-------
1 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/api/SubstringMatchingRule.java b/opendj3-server-dev/src/server/org/opends/server/api/SubstringMatchingRule.java
index b09ba43..7984df1 100644
--- a/opendj3-server-dev/src/server/org/opends/server/api/SubstringMatchingRule.java
+++ b/opendj3-server-dev/src/server/org/opends/server/api/SubstringMatchingRule.java
@@ -26,14 +26,11 @@
*/
package org.opends.server.api;
-
-
import java.util.List;
-import org.opends.server.types.*;
-import org.forgerock.opendj.ldap.ByteString;
import org.forgerock.opendj.ldap.ByteSequence;
-
+import org.forgerock.opendj.ldap.ByteString;
+import org.forgerock.opendj.ldap.DecodeException;
/**
* This class defines the set of methods and structures that must be
@@ -57,12 +54,12 @@
*
* @return The normalized form of the value fragment.
*
- * @throws DirectoryException If the provided value fragment is
+ * @throws DecodeException If the provided value fragment is
* not acceptable according to the
* associated syntax.
*/
public abstract ByteString normalizeSubstring(
- ByteSequence substring) throws DirectoryException;
+ ByteSequence substring) throws DecodeException;
--
Gitblit v1.10.0