mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
SAIL-342: Alfresco to CMIS ACL mapping: change isExtract to isExact on CMISAccessControlReport
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19057 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -37,17 +37,19 @@ public interface CMISAccessControlReport
|
||||
public List<? extends CMISAccessControlEntry> getAccessControlEntries();
|
||||
|
||||
/**
|
||||
* Is this report incomplete?
|
||||
* If so there are other other security constraints that apply
|
||||
* Is this report exact?
|
||||
* If <code>false</code> then there are other other security constraints that apply.
|
||||
* This will always be false as we have global permission and deny entries that are not reported.
|
||||
* We do not explicitly check these cases - and return false - as we have global permission defined by default.
|
||||
*
|
||||
* @return <code>false</code> means the report fully describes security access, <code>true</code> means other
|
||||
* security constraints apply but are not reported.
|
||||
* @return <code>true</code> means the report fully describes security access, <code>false</code> means other
|
||||
* security constraints <i>may</i> apply but are not reported.
|
||||
*/
|
||||
public boolean isExtract();
|
||||
public boolean isExact();
|
||||
|
||||
/**
|
||||
* Get ACEs grouped by principal id
|
||||
* @return
|
||||
* @return ACEs grouped by principal id
|
||||
* @throws CMISConstraintException
|
||||
*/
|
||||
public List<? extends CMISAccessControlEntriesGroupedByPrincipalId> getAccessControlEntriesGroupedByPrincipalId() throws CMISConstraintException;
|
||||
|
Reference in New Issue
Block a user