diff options
Diffstat (limited to 'libjava/java/security/acl/Owner.java')
-rw-r--r-- | libjava/java/security/acl/Owner.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/security/acl/Owner.java b/libjava/java/security/acl/Owner.java index e34e412..7732fc7 100644 --- a/libjava/java/security/acl/Owner.java +++ b/libjava/java/security/acl/Owner.java @@ -64,7 +64,7 @@ public interface Owner * * @exception NotOwnerException If the caller is not already an owner of this ACL */ - public abstract boolean addOwner(Principal caller, Principal owner) + boolean addOwner(Principal caller, Principal owner) throws NotOwnerException; /** @@ -82,7 +82,7 @@ public interface Owner * @exception NotOwnerException If the caller is not already an owner of this ACL * @exception LastOwnerException If completing the operation would delete the last ACL owner */ - public abstract boolean deleteOwner(Principal caller, Principal owner) + boolean deleteOwner(Principal caller, Principal owner) throws NotOwnerException, LastOwnerException; /** @@ -91,5 +91,5 @@ public interface Owner * * @return <code>true</code> if the <code>Principal</code> is an owner, <code>false</code> otherwise */ - public abstract boolean isOwner(Principal owner); + boolean isOwner(Principal owner); } |