| org.acegisecurity.acls.MutableAcl
All known Subclasses: org.acegisecurity.acls.domain.AclImpl,
MutableAcl | public interface MutableAcl extends Acl(Code) | | A mutable Acl .
A mutable ACL must ensure that appropriate security checks are performed
before allowing access to its methods.
author: Ben Alex version: $Id: MutableAcl.java 1867 2007-05-25 02:22:18Z benalex $ |
getEntries | AccessControlEntry[] getEntries()(Code) | | Retrieves all of the non-deleted
AccessControlEntry instances currently stored by the
MutableAcl . The returned objects should be immutable outside the package, and therefore it is safe
to return them to the caller for informational purposes. The AccessControlEntry information is
needed so that invocations of update and delete methods on the MutableAcl can refer to a valid
AccessControlEntry.getId .
DOCUMENT ME! |
getId | Serializable getId()(Code) | | Obtains an identifier that represents this MutableAcl .
the identifier, or null if unsaved |
setEntriesInheriting | void setEntriesInheriting(boolean entriesInheriting)(Code) | | Change the value returned by
Acl.isEntriesInheriting .
Parameters: entriesInheriting - the new value |
setParent | void setParent(Acl newParent)(Code) | | Changes the parent of this ACL.
Parameters: newParent - the new parent |
|
|