Package | Description |
---|---|
org.jboss.security.acl |
Modifier and Type | Class and Description |
---|---|
class |
ACLEntryImpl
This class represents an entry in the Access Control List (ACL), and associates a permission to an identity.
|
Modifier and Type | Method and Description |
---|---|
ACLEntry |
ACLImpl.getEntry(Identity identity) |
ACLEntry |
ACL.getEntry(Identity identity)
Obtains the entry that corresponds to the specified identity.
|
ACLEntry |
ACLImpl.getEntry(String identityOrRole) |
ACLEntry |
ACL.getEntry(String identityOrRole)
Obtains the entry that corresponds to the specified identity or role name.
|
Modifier and Type | Method and Description |
---|---|
Collection<? extends ACLEntry> |
ACLImpl.getEntries() |
Collection<? extends ACLEntry> |
ACL.getEntries()
Obtains the collection of all
ACLEntries in this ACL. |
Modifier and Type | Method and Description |
---|---|
boolean |
ACLImpl.addEntry(ACLEntry entry) |
boolean |
ACL.addEntry(ACLEntry entry)
Adds an entry to this ACL.
|
boolean |
ACLImpl.removeEntry(ACLEntry entry) |
boolean |
ACL.removeEntry(ACLEntry entry)
Removes an entry from this ACL.
|
Modifier and Type | Method and Description |
---|---|
ACL |
JPAPersistenceStrategy.createACL(Resource resource,
Collection<ACLEntry> entries) |
ACL |
ACLPersistenceStrategy.createACL(Resource resource,
Collection<ACLEntry> entries)
Creates a new
ACL with the specified entries and associates it to the given resource. |
void |
ACLRegistration.registerACL(Resource resource,
Collection<ACLEntry> entries)
Registers an
ACL associated with the specified Resource using the supplied entries. |
Constructor and Description |
---|
ACLImpl(Resource resource,
Collection<ACLEntry> entries)
Builds an instance of
ACLImpl for the specified resource, and initialize it with the specified entries. |
ACLImpl(String resourceString,
Collection<ACLEntry> entries) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.