Java org.springframework.security.acls.model MutableAcl fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.acls.model MutableAcl fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.acls.model MutableAcl.

The text is from its open source code.

Implementation

org.springframework.security.acls.model.MutableAcl has the following implementations.
Click this link to see all its implementation.

Method

voiddeleteAce(int aceIndex)
ListgetEntries()
Returns all of the entries represented by the present Acl.
SerializablegetId()
Obtains an identifier that represents this MutableAcl.
ObjectIdentitygetObjectIdentity()
Obtains the domain object this Acl provides entries for.
SidgetOwner()
Determines the owner of the Acl.
AclgetParentAcl()
A domain object may have a parent for the purpose of ACL inheritance.
voidinsertAce(int atIndexLocation, Permission permission, Sid sid, boolean granting)
booleanisEntriesInheriting()
Indicates whether the ACL entries from the #getParentAcl() should flow down into the current Acl.
booleanisGranted(List permission, List sids, boolean administrativeMode)
This is the actual authorization logic method, and must be used whenever ACL authorization decisions are required.
voidsetEntriesInheriting(boolean entriesInheriting)
Change the value returned by Acl#isEntriesInheriting() .
voidsetOwner(Sid newOwner)
Changes the present owner to a different owner.
voidsetParent(Acl newParent)
Changes the parent of this ACL.
voidupdateAce(int aceIndex, Permission permission)