SAIL-373 (SAIL-294): Fix ACL update entity - fix PersonTest.testCreateMissingPeople after r20931 (which enabled the shared ACL entity cache)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20979 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2010-07-07 12:54:55 +00:00
parent 839f421e5f
commit a612271e6b
5 changed files with 56 additions and 19 deletions

View File

@@ -57,10 +57,10 @@ public interface AclCrudDAO
public Acl createAcl(AclEntity entity);
public Acl getAcl(long aclEntityId);
public AclEntity getAclForUpdate(long aclEntityId);
public AclUpdateEntity getAclForUpdate(long aclEntityId);
public List<Long> getAclsThatInheritFromAcl(long aclEntityId);
public Long getLatestAclByGuid(String aclGuid);
public void updateAcl(AclEntity entity);
public void updateAcl(AclUpdateEntity entity);
public void deleteAcl(long aclEntityId);
public List<Long> getADMNodesByAcl(long aclEntityId, int maxResults);
public List<Long> getAVMNodesByAcl(long aclEntityId, int maxResults);