*/
public List getGroups(Boolean fillMembers) throws Exception {
List<CDBGroup> groups = new ArrayList<CDBGroup>();
ResultSet result = CTLib.getMapper().call("users.get-groups", null);
while (result.next()) {
CDBGroup group = ServiceEntitiesUtil.obtainCDBGroup(result);
if (fillMembers) {
this.getGroupMembers(group);
}
groups.add(group);
}