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

Nicolas Capponi
08.55.2014 c3ddd7489abd06155b872cc23cef3575e2ee1b9a
opendj3-server-dev/src/server/org/opends/server/authorization/dseecompat/AciContainer.java
@@ -511,7 +511,7 @@
   * @return True if the authZid is equal to the authorization entry's DN.
   */
    public boolean isAuthzidAuthorizationDN() {
     return this.authzid.equals(this.authorizationEntry.getDN());
     return this.authzid.equals(this.authorizationEntry.getName());
    }
  /**
@@ -666,7 +666,7 @@
      if(this.useAuthzid)
        return this.authzid;
      else if (this.authorizationEntry != null)
        return this.authorizationEntry.getDN();
        return this.authorizationEntry.getName();
      return DN.rootDN();
    }
@@ -675,7 +675,7 @@
    */
    @Override
    public DN getResourceDN() {
        return resourceEntry.getDN();
        return resourceEntry.getName();
    }
   /**