diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-10-12 15:53:14 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2003-10-12 15:53:14 +0000 |
| commit | b451effb6e2ba40338bdeb92c0d7ea9add5f9c77 (patch) | |
| tree | 94e030d2b070a128942762b7a6ca36dbeaf612f6 /java/security/acl/Group.java | |
| parent | 9d4f719c9b9f7604c61f8651152bfdfe6683ae2b (diff) | |
| download | classpath-b451effb6e2ba40338bdeb92c0d7ea9add5f9c77.tar.gz | |
2003-10-12 Michael Koch <konqueror@gmx.de>
* java/security/Key.java,
java/security/PrivateKey.java,
java/security/PublicKey.java,
java/security/acl/Acl.java,
java/security/acl/AclEntry.java,
java/security/acl/Group.java,
java/security/acl/Owner.java,
java/security/acl/Permission.java,
java/security/cert/X509Extension.java,
java/security/interfaces/DSAKey.java,
java/security/interfaces/DSAKeyPairGenerator.java,
java/security/interfaces/DSAParams.java,
java/security/interfaces/DSAPrivateKey.java,
java/security/interfaces/DSAPublicKey.java,
java/security/interfaces/RSAKey.java,
java/security/interfaces/RSAPrivateCrtKey.java,
java/security/interfaces/RSAPrivateKey.java,
java/security/interfaces/RSAPublicKey.java:
Removed redundant modifiers.
Diffstat (limited to 'java/security/acl/Group.java')
| -rw-r--r-- | java/security/acl/Group.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/security/acl/Group.java b/java/security/acl/Group.java index 281af24d0..10718a76b 100644 --- a/java/security/acl/Group.java +++ b/java/security/acl/Group.java @@ -59,7 +59,7 @@ public interface Group extends Principal * * @return <code>true</code> if the user was successfully added or <code>false</code> if the user is already a member */ - public abstract boolean addMember(Principal user); + boolean addMember(Principal user); /** * This method deletes a member from the group. @@ -68,7 +68,7 @@ public interface Group extends Principal * * @return <code>true</code> if the user was successfully deleted or <code>false</code> if the user is not a member of the group */ - public abstract boolean removeMember(Principal user); + boolean removeMember(Principal user); /** * This method tests whether or not a given <code>Principal</code> is a @@ -78,7 +78,7 @@ public interface Group extends Principal * * @return <code>true</code> if the user is member, <code>false</code> otherwise */ - public abstract boolean isMember(Principal member); + boolean isMember(Principal member); /** * This method returns a list of all members of the group as an @@ -86,5 +86,5 @@ public interface Group extends Principal * * @return The list of all members of the group */ - public abstract Enumeration members(); + Enumeration members(); } |
