Package | Description |
---|---|
org.springframework.security.acls.domain |
Basic implementation of access control lists (ACLs) interfaces.
|
org.springframework.security.acls.jdbc |
JDBC-based persistence of ACL information
|
org.springframework.security.acls.model |
Interfaces and shared classes to manage access control lists (ACLs) for domain object instances.
|
Modifier and Type | Class and Description |
---|---|
class |
AclImpl
Base implementation of
Acl . |
Modifier and Type | Method and Description |
---|---|
MutableAcl |
EhCacheBasedAclCache.getFromCache(ObjectIdentity objectIdentity) |
MutableAcl |
EhCacheBasedAclCache.getFromCache(Serializable pk) |
Modifier and Type | Method and Description |
---|---|
void |
EhCacheBasedAclCache.putInCache(MutableAcl acl) |
Modifier and Type | Method and Description |
---|---|
MutableAcl |
JdbcMutableAclService.createAcl(ObjectIdentity objectIdentity) |
MutableAcl |
JdbcMutableAclService.updateAcl(MutableAcl acl)
This implementation will simply delete all ACEs in the database and recreate them on each invocation of
this method.
|
Modifier and Type | Method and Description |
---|---|
protected void |
JdbcMutableAclService.createEntries(MutableAcl acl)
Creates a new row in acl_entry for every ACE defined in the passed MutableAcl object.
|
MutableAcl |
JdbcMutableAclService.updateAcl(MutableAcl acl)
This implementation will simply delete all ACEs in the database and recreate them on each invocation of
this method.
|
protected void |
JdbcMutableAclService.updateObjectIdentity(MutableAcl acl)
Updates an existing acl_object_identity row, with new information presented in the passed MutableAcl
object.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AuditableAcl
A mutable ACL that provides audit capabilities.
|
interface |
OwnershipAcl
A mutable ACL that provides ownership capabilities.
|
Modifier and Type | Method and Description |
---|---|
MutableAcl |
MutableAclService.createAcl(ObjectIdentity objectIdentity)
Creates an empty
Acl object in the database. |
MutableAcl |
AclCache.getFromCache(ObjectIdentity objectIdentity) |
MutableAcl |
AclCache.getFromCache(Serializable pk) |
MutableAcl |
MutableAclService.updateAcl(MutableAcl acl)
Changes an existing
Acl in the database. |
Modifier and Type | Method and Description |
---|---|
void |
AclCache.putInCache(MutableAcl acl) |
MutableAcl |
MutableAclService.updateAcl(MutableAcl acl)
Changes an existing
Acl in the database. |
Copyright © 2015. All rights reserved.