Uses of Interface
org.jboss.security.acl.ACLEntry
-
Packages that use ACLEntry Package Description org.jboss.security.acl -
-
Uses of ACLEntry in org.jboss.security.acl
Classes in org.jboss.security.acl that implement ACLEntry Modifier and Type Class Description class
ACLEntryImpl
This class represents an entry in the Access Control List (ACL), and associates a permission to an identity.Methods in org.jboss.security.acl that return ACLEntry Modifier and Type Method Description ACLEntry
ACL. getEntry(String identityOrRole)
Obtains the entry that corresponds to the specified identity or role name.ACLEntry
ACL. getEntry(Identity identity)
Obtains the entry that corresponds to the specified identity.ACLEntry
ACLImpl. getEntry(String identityOrRole)
ACLEntry
ACLImpl. getEntry(Identity identity)
Methods in org.jboss.security.acl that return types with arguments of type ACLEntry Modifier and Type Method Description Collection<? extends ACLEntry>
ACL. getEntries()
Obtains the collection of allACLEntries
in this ACL.Collection<? extends ACLEntry>
ACLImpl. getEntries()
Methods in org.jboss.security.acl with parameters of type ACLEntry Modifier and Type Method Description boolean
ACL. addEntry(ACLEntry entry)
Adds an entry to this ACL.boolean
ACLImpl. addEntry(ACLEntry entry)
boolean
ACL. removeEntry(ACLEntry entry)
Removes an entry from this ACL.boolean
ACLImpl. removeEntry(ACLEntry entry)
Method parameters in org.jboss.security.acl with type arguments of type ACLEntry Modifier and Type Method Description 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, Collection<ACLEntry> entries)
void
ACLRegistration. registerACL(Resource resource, Collection<ACLEntry> entries)
Registers anACL
associated with the specifiedResource
using the supplied entries.Constructor parameters in org.jboss.security.acl with type arguments of type ACLEntry Constructor Description ACLImpl(String resourceString, Collection<ACLEntry> entries)
ACLImpl(Resource resource, Collection<ACLEntry> entries)
Builds an instance ofACLImpl
for the specified resource, and initialize it with the specified entries.
-