From efa949b25f472d7e4c39733678d8f0e5229f8201 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Thu, 26 Dec 2013 15:31:32 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1235 : Migrate configuration framework

---
 opendj-sdk/opendj-admin/src/main/java/org/opends/server/authorization/dseecompat/Aci.java |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/opendj-sdk/opendj-admin/src/main/java/org/opends/server/authorization/dseecompat/Aci.java b/opendj-sdk/opendj-admin/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
index 70b099d..712de07 100644
--- a/opendj-sdk/opendj-admin/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
+++ b/opendj-sdk/opendj-admin/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
@@ -40,7 +40,18 @@
         throw new RuntimeException("This class is not implemented");
     }
 
-    public static Aci decode(ByteString valueOf, DN rootDN) throws AciException {
+    /**
+     * Decode an ACI byte string.
+     *
+     * @param byteString
+     *            The ByteString containing the ACI string.
+     * @param dn
+     *            DN of the ACI entry.
+     * @return Returns a decoded ACI representing the string argument.
+     * @throws AciException
+     *             If the parsing of the ACI string fails.
+     */
+    public static Aci decode(ByteString byteString, DN dn) throws AciException {
         throw new RuntimeException("This class is not implemented");
     }
 }

--
Gitblit v1.10.0