From 594c090e932966e1e41f70bd69d746556eaea99d Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 15 Jan 2014 23:34:37 +0000
Subject: [PATCH] Removed some classes and methods:
---
opendj-config/src/main/java/org/opends/server/authorization/dseecompat/Aci.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opendj-config/src/main/java/org/opends/server/authorization/dseecompat/Aci.java b/opendj-config/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
index 712de07..9906a7f 100644
--- a/opendj-config/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
+++ b/opendj-config/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
@@ -26,6 +26,7 @@
*/
package org.opends.server.authorization.dseecompat;
+import org.forgerock.i18n.LocalizedIllegalArgumentException;
import org.forgerock.opendj.ldap.ByteString;
import org.forgerock.opendj.ldap.DN;
@@ -48,10 +49,10 @@
* @param dn
* DN of the ACI entry.
* @return Returns a decoded ACI representing the string argument.
- * @throws AciException
+ * @throws LocalizedIllegalArgumentException
* If the parsing of the ACI string fails.
*/
- public static Aci decode(ByteString byteString, DN dn) throws AciException {
+ public static Aci decode(ByteString byteString, DN dn) {
throw new RuntimeException("This class is not implemented");
}
}
--
Gitblit v1.10.0