Ownerpublic interface Owner Interface for managing owners of Access Control Lists (ACLs) or ACL
configurations. (Note that the Acl interface in the
java.security.acl package extends this Owner
interface.) The initial owner Principal should be specified as an
argument to the constructor of the class implementing this interface. |
Methods Summary |
---|
public boolean | addOwner(java.security.Principal caller, java.security.Principal owner)Adds an owner. Only owners can modify ACL contents. The caller
principal must be an owner of the ACL in order to invoke this method.
That is, only an owner can add another owner. The initial owner is
configured at ACL construction time.
| public boolean | deleteOwner(java.security.Principal caller, java.security.Principal owner)Deletes an owner. If this is the last owner in the ACL, an exception is
raised.
The caller principal must be an owner of the ACL in order to invoke
this method.
| public boolean | isOwner(java.security.Principal owner)Returns true if the given principal is an owner of the ACL.
|
|