mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
16.34.2014 594c090e932966e1e41f70bd69d746556eaea99d
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");
    }
}