Interface GroupMembersService
public interface GroupMembersService
-
Method Summary
Modifier and TypeMethodDescriptiongetGroupMembersWithSelectedAttributes
(String group, List<String> attributes) Method returns list of group members with attributes in selected group.getGroupsMembersInGroupsWithSelectedAttributes
(List<String> groups, List<String> attributes) Method returns list of group members with attributes in selected groups.
-
Method Details
-
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.
-