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

jarnou
17.14.2007 ff9755c40feeaf5a3208229d48b80b608ab7a68c
opends/src/server/org/opends/server/authorization/dseecompat/AciHandler.java
@@ -1025,7 +1025,8 @@
   * @param newRDN      The new RDN component.
   * @return True if access is allowed.
   */
  private boolean aciCheckRDNs(ModifyDNOperation operation, RDN oldRDN,
  private boolean aciCheckRDNs(LocalBackendModifyDNOperation operation,
                               RDN oldRDN,
                               RDN newRDN) {
      boolean ret;
@@ -1078,7 +1079,8 @@
   * @throws DirectoryException  If a problem occurs while trying to
   *                             retrieve the new superior entry.
   */
  private boolean aciCheckSuperiorEntry(DN superiorDN, ModifyDNOperation op)
  private boolean aciCheckSuperiorEntry(DN superiorDN,
      LocalBackendModifyDNOperation op)
  throws DirectoryException {
    boolean ret=false;
    Lock entryLock = null;
@@ -1115,7 +1117,7 @@
   * @return True if access is allowed.
   *
   */
  public boolean isAllowed(ModifyDNOperation operation) {
  public boolean isAllowed(LocalBackendModifyDNOperation operation) {
      boolean ret=true;
      DN newSuperiorDN;
      RDN oldRDN=operation.getOriginalEntry().getDN().getRDN();