Uses of Interface
org.jboss.security.acl.ACL
-
Packages that use ACL Package Description org.jboss.security.acl -
-
Uses of ACL in org.jboss.security.acl
Classes in org.jboss.security.acl that implement ACL Modifier and Type Class Description class
ACLImpl
Simple ACL implementation that keeps the entries in a Map whose keys are the identities of the entries, to provide fast access.Methods in org.jboss.security.acl that return ACL Modifier and Type Method Description ACL
ACLPersistenceStrategy. createACL(Resource resource)
Creates a newACL
and associates it to the given resource.ACL
ACLPersistenceStrategy. createACL(Resource resource, Collection<ACLEntry> entries)
Creates a newACL
with the specified entries and associates it to the given resource.ACL
JPAPersistenceStrategy. createACL(Resource resource)
ACL
JPAPersistenceStrategy. createACL(Resource resource, Collection<ACLEntry> entries)
ACL
ACLPersistenceStrategy. getACL(Resource resource)
Obtains a reference to theACL
associated to the given resource.ACL
JPAPersistenceStrategy. getACL(Resource resource)
Methods in org.jboss.security.acl that return types with arguments of type ACL Modifier and Type Method Description Collection<ACL>
ACLPersistenceStrategy. getACLs()
Obtains allACL
s that are managed by thisACLPersistenceStrategy
.Collection<ACL>
JPAPersistenceStrategy. getACLs()
Methods in org.jboss.security.acl with parameters of type ACL Modifier and Type Method Description boolean
ACLPersistenceStrategy. removeACL(ACL acl)
Removes the givenACL
, breaking the existing association with the resource it relates to.boolean
JPAPersistenceStrategy. removeACL(ACL acl)
boolean
ACLPersistenceStrategy. updateACL(ACL acl)
Updates the givenACL
.boolean
JPAPersistenceStrategy. updateACL(ACL acl)
-