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:
@@ -26,8 +26,8 @@ import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.SortedMap;
|
||||
|
||||
import org.alfresco.repo.domain.DbAccessControlList;
|
||||
import org.alfresco.repo.domain.PropertyValue;
|
||||
import org.alfresco.repo.domain.permissions.Acl;
|
||||
import org.alfresco.service.cmr.avm.AVMNodeDescriptor;
|
||||
import org.alfresco.service.cmr.avm.AVMStoreDescriptor;
|
||||
import org.alfresco.service.cmr.avm.VersionDescriptor;
|
||||
@@ -69,13 +69,13 @@ public interface AVMStore
|
||||
* Get the Acl associated with this store.
|
||||
* @return
|
||||
*/
|
||||
public DbAccessControlList getStoreAcl();
|
||||
public Acl getStoreAcl();
|
||||
|
||||
/**
|
||||
* Set the acl on this store.
|
||||
* @param acl
|
||||
*/
|
||||
public void setStoreAcl(DbAccessControlList acl);
|
||||
public void setStoreAcl(Acl acl);
|
||||
|
||||
/**
|
||||
* Snapshots this store. This sets all nodes in the
|
||||
@@ -478,7 +478,7 @@ public interface AVMStore
|
||||
* @param path The path to the node.
|
||||
* @param acl The ACL to set.
|
||||
*/
|
||||
public void setACL(String path, DbAccessControlList acl);
|
||||
public void setACL(String path, Acl acl);
|
||||
|
||||
/**
|
||||
* Get the ACL on a node.
|
||||
@@ -486,7 +486,7 @@ public interface AVMStore
|
||||
* @param path The path to the node.
|
||||
* @return The ACL.
|
||||
*/
|
||||
public DbAccessControlList getACL(int version, String path);
|
||||
public Acl getACL(int version, String path);
|
||||
|
||||
/**
|
||||
* Link a node into a directory, directly.
|
||||
|
Reference in New Issue
Block a user