Interface GroupMembersService
-
public interface GroupMembersService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<GroupMemberWithAttributes>
getGroupMembersWithSelectedAttributes(String group, List<String> attributes)
Method returns list of group members with attributes in selected group.Map<String,List<GroupMemberWithAttributes>>
getGroupsMembersInGroupsWithSelectedAttributes(List<String> groups, List<String> attributes)
Method returns list of group members with attributes in selected groups.
-
-
-
Method Detail
-
getGroupMembersWithSelectedAttributes
List<GroupMemberWithAttributes> getGroupMembersWithSelectedAttributes(String group, List<String> attributes)
Method returns list of group members with attributes in selected group. Argument attributes decides about what attributes will be return. If null or empty is returns all group members with all attributes in selected group.
-
getGroupsMembersInGroupsWithSelectedAttributes
Map<String,List<GroupMemberWithAttributes>> getGroupsMembersInGroupsWithSelectedAttributes(List<String> groups, List<String> attributes)
Method returns list of group members with attributes in selected groups. Argument attributes decides about what attributes will be return. If null or empty it returns all group members with all attributes in selected groups.
-
-