Interface AccessControlList
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SimpleAccessControlList
public interface AccessControlList extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract 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)
-
-
-
Method Detail
-
getProperties
AccessControlListProperties getProperties()
Get the properties- Returns:
- AccessControlListProperties
-
getEntries
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 .... To make permission evaluation faster for the common cases
-
getCachedSimpleNodePermissionEntry
SimpleNodePermissionEntry getCachedSimpleNodePermissionEntry()
-
setCachedSimpleNodePermissionEntry
void setCachedSimpleNodePermissionEntry(SimpleNodePermissionEntry cachedSimpleNodePermissionEntry)
-
-