Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
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.
Method Summary | |
boolean | addOwner(Principal caller,
Principal owner)
|
boolean | deleteOwner(Principal caller,
Principal owner)
|
boolean | isOwner(Principal owner)
|
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.
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.
public boolean isOwner(Principal owner)
owner
- the principal to be checked to determine whether or not
it is an owner.
Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |