10-20-2011 03:41 AM
protected List<String> getGroupsForCandidateUser(String candidateUser) {
List<Group> groups = Context
.getCommandContext()
.getGroupManager()
.findGroupsByUser(candidateUser);
List<String> groupIds = new ArrayList<String>();
for (Group group : groups) {
groupIds.add(group.getId());
}
return groupIds;
}
10-21-2011 01:16 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.