Package | Description |
---|---|
org.acegisecurity.acls |
Interfaces and shared classes to manage access control lists (ACLs) for domain object instances.
|
org.acegisecurity.acls.domain |
Basic implementation of access control lists (ACLs) interfaces.
|
org.acegisecurity.acls.jdbc |
JDBC-based persistence of ACL information.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AuditableAcl
A mutable ACL that provides audit capabilities.
|
interface |
MutableAcl
A mutable
Acl . |
interface |
OwnershipAcl
A mutable ACL that provides ownership capabilities.
|
Modifier and Type | Method and Description |
---|---|
Acl |
AccessControlEntry.getAcl() |
Acl |
Acl.getParentAcl()
A domain object may have a parent for the purpose of ACL inheritance.
|
Acl |
AclService.readAclById(ObjectIdentity object)
Same as
AclService.readAclsById(ObjectIdentity[]) except it returns only a single Acl. |
Acl |
AclService.readAclById(ObjectIdentity object,
Sid[] sids)
Same as
AclService.readAclsById(ObjectIdentity[], Sid[]) except it returns only a single Acl. |
Modifier and Type | Method and Description |
---|---|
void |
MutableAcl.setParent(Acl newParent)
Changes the parent of this ACL.
|
Modifier and Type | Class and Description |
---|---|
class |
AclImpl
Base implementation of
Acl . |
Modifier and Type | Method and Description |
---|---|
Acl |
AccessControlEntryImpl.getAcl() |
Acl |
AclImpl.getParentAcl() |
Modifier and Type | Method and Description |
---|---|
void |
AclAuthorizationStrategy.securityCheck(Acl acl,
int changeType) |
void |
AclAuthorizationStrategyImpl.securityCheck(Acl acl,
int changeType) |
void |
AclImpl.setParent(Acl newParent) |
Constructor and Description |
---|
AccessControlEntryImpl(Serializable id,
Acl acl,
Sid sid,
Permission permission,
boolean granting,
boolean auditSuccess,
boolean auditFailure) |
AclImpl(ObjectIdentity objectIdentity,
Serializable id,
AclAuthorizationStrategy aclAuthorizationStrategy,
AuditLogger auditLogger,
Acl parentAcl,
Sid[] loadedSids,
boolean entriesInheriting,
Sid owner)
Full constructor, which should be used by persistence tools that do not
provide field-level access features.
|
Modifier and Type | Method and Description |
---|---|
Acl |
JdbcAclService.readAclById(ObjectIdentity object) |
Acl |
JdbcAclService.readAclById(ObjectIdentity object,
Sid[] sids) |
Copyright © 2019. All rights reserved.