Lines Matching refs:member
49 * adds the specified member to the group.
51 * @return true if the member was added - false if the
52 * member could not be added.
67 * removes the specified member from the group.
70 * the principal was not a member
119 * returns true if the passed principal is a member of the group.
120 * @param member The principal whose membership must be checked for.
121 * @return true if the principal is a member of this group,
124 public boolean isMember(Principal member) {
127 // if the member is part of the group (common case), return true.
131 if (groupMembers.contains(member)) {
135 return isMemberRecurse(member, alreadySeen);
152 boolean isMemberRecurse(Principal member, Vector<Group> alreadySeen) {
158 // if the member is in this collection, return true
159 if (p.equals(member)) {
174 mem = g.isMemberRecurse(member, alreadySeen);
178 mem = g.isMember(member);