fix for CLOUD-2150: Trashcan for network admins only shows their deleted content.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@57583 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jamal Kaabi-Mofrad
2013-11-04 10:10:02 +00:00
parent 6a5e3923a7
commit fa8910384a
5 changed files with 139 additions and 71 deletions

View File

@@ -188,4 +188,13 @@ public interface NodeArchiveService
* @since 4.2
*/
public PagingResults<NodeRef> listArchivedNodes(ArchivedNodesCannedQueryBuilder cannedQueryBuilder);
/**
* Check if the current user has authority to access the archived node.
*
* @param nodeRef
* @return true if the currently authenticated user has authority to access
* the archived node, otherwise false.
*/
public boolean hasFullAccess(NodeRef nodeRef);
}