|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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.
Acl
Method Summary | |
boolean |
addOwner(Principal caller,
Principal owner)
Adds an owner. |
boolean |
deleteOwner(Principal caller,
Principal owner)
Deletes an owner. |
boolean |
isOwner(Principal owner)
Returns true if the given principal is an owner of the ACL. |
Method Detail |
public boolean addOwner(Principal caller, Principal owner) throws NotOwnerException
caller
- the principal invoking this method. It must be an owner
of the ACL.owner
- the owner that should be added to the list of owners.
NotOwnerException
- if the caller principal is not an owner
of the ACL.public boolean deleteOwner(Principal caller, Principal owner) throws NotOwnerException, LastOwnerException
The caller principal must be an owner of the ACL in order to invoke this method.
caller
- the principal invoking this method. It must be an owner
of the ACL.owner
- the owner to be removed from the list of owners.
NotOwnerException
- if the caller principal is not an owner
of the ACL.
LastOwnerException
- if there is only one owner left, so that
deleteOwner would leave the ACL owner-less.public boolean isOwner(Principal owner)
owner
- the principal to be checked to determine whether or not
it is an owner.
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.