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

Nicolas Capponi
06.52.2013 c2d0d212b510d8e82b9b123b4d06a80b835c8cd4
opendj-admin/src/main/java/org/opends/server/authorization/dseecompat/Aci.java
@@ -27,15 +27,21 @@
 */
package org.opends.server.authorization.dseecompat;
import org.forgerock.opendj.ldap.ByteString;
import org.forgerock.opendj.ldap.DN;
/**
 * The Aci class represents ACI strings.
 */
public class Aci implements Comparable<Aci>
{
public class Aci implements Comparable<Aci> {
    // TODO : to complete when implementing Aci support.
    @Override
    public int compareTo(Aci o) {
        throw new RuntimeException("This class is not implemented");
    }
 }
    public static Aci decode(ByteString valueOf, DN rootDN) throws AciException {
        throw new RuntimeException("This class is not implemented");
    }
}