Class SimpleAccessControlList
- java.lang.Object
-
- org.alfresco.repo.security.permissions.SimpleAccessControlList
-
- All Implemented Interfaces:
java.io.Serializable,AccessControlList
public class SimpleAccessControlList extends java.lang.Object implements AccessControlList
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SimpleAccessControlList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SimpleNodePermissionEntrygetCachedSimpleNodePermissionEntry()java.util.List<AccessControlEntry>getEntries()Get the members of the ACL in order Ordered by: position, then deny followed by allow, then by authority type then ....AccessControlListPropertiesgetProperties()Get the propertiesvoidsetCachedSimpleNodePermissionEntry(SimpleNodePermissionEntry cachedSimpleNodePermissionEntry)voidsetEntries(java.util.List<AccessControlEntry> entries)voidsetProperties(AccessControlListProperties properties)
-
-
-
Method Detail
-
getEntries
public java.util.List<AccessControlEntry> getEntries()
Description copied from interface:AccessControlListGet the members of the ACL in order Ordered by: position, then deny followed by allow, then by authority type then .... To make permission evaluation faster for the common cases- Specified by:
getEntriesin interfaceAccessControlList
-
getProperties
public AccessControlListProperties getProperties()
Description copied from interface:AccessControlListGet the properties- Specified by:
getPropertiesin interfaceAccessControlList- Returns:
- AccessControlListProperties
-
setEntries
public void setEntries(java.util.List<AccessControlEntry> entries)
-
setProperties
public void setProperties(AccessControlListProperties properties)
-
getCachedSimpleNodePermissionEntry
public SimpleNodePermissionEntry getCachedSimpleNodePermissionEntry()
- Specified by:
getCachedSimpleNodePermissionEntryin interfaceAccessControlList
-
setCachedSimpleNodePermissionEntry
public void setCachedSimpleNodePermissionEntry(SimpleNodePermissionEntry cachedSimpleNodePermissionEntry)
- Specified by:
setCachedSimpleNodePermissionEntryin interfaceAccessControlList
-
-