mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
SAIL-388 - PermissionDAO: Remove redundant DbAccessControlList entity (and associated helper methods)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20999 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -20,8 +20,8 @@ package org.alfresco.repo.avm;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import org.alfresco.repo.domain.DbAccessControlList;
|
||||
import org.alfresco.repo.domain.PropertyValue;
|
||||
import org.alfresco.repo.domain.permissions.Acl;
|
||||
import org.alfresco.repo.security.permissions.ACLCopyMode;
|
||||
import org.alfresco.service.cmr.avm.AVMNodeDescriptor;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
@@ -194,13 +194,13 @@ public interface AVMNode
|
||||
* Set an ACL on this node.
|
||||
* @param acl The ACL to set.
|
||||
*/
|
||||
public void setAcl(DbAccessControlList acl);
|
||||
public void setAcl(Acl acl);
|
||||
|
||||
/**
|
||||
* Get the ACL on this node.
|
||||
* @return The ACL on this node.
|
||||
*/
|
||||
public DbAccessControlList getAcl();
|
||||
public Acl getAcl();
|
||||
|
||||
/**
|
||||
* Set the store that we are new in.
|
||||
@@ -222,7 +222,7 @@ public interface AVMNode
|
||||
*/
|
||||
public void copyACLs(AVMNode other, ACLCopyMode mode);
|
||||
|
||||
public void copyACLs(DbAccessControlList otherAcl, DbAccessControlList parentAcl, ACLCopyMode mode);
|
||||
public void copyACLs(Acl otherAcl, Acl parentAcl, ACLCopyMode mode);
|
||||
|
||||
/**
|
||||
* Copy metadata from another node.
|
||||
|
Reference in New Issue
Block a user