public interface Group extends Principal
Note that Group extends Principal. Thus, either a Principal or a Group can
be passed as an argument to methods containing a Principal parameter. For
example, you can add either a Principal or a Group to a Group object by
calling the object's addMember
method, passing it the
Principal or Group.
Modifier and Type | Method and Description |
---|---|
boolean |
addMember(Principal user)
Adds the specified member to the group.
|
boolean |
isMember(Principal member)
Returns true if the passed principal is a member of the group.
|
Enumeration<? extends Principal> |
members()
Returns an enumeration of the members in the group.
|
boolean |
removeMember(Principal user)
Removes the specified member from the group.
|
boolean addMember(Principal user)
user
- the principal to add to this group.boolean removeMember(Principal user)
user
- the principal to remove from this group.boolean isMember(Principal member)
member
- the principal whose membership is to be checked.Enumeration<? extends Principal> members()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.