* Retrieves/assembles a GroupSet based on the Criteria passed in
*/
public static GroupSet retrieveSet(Criteria criteria) throws Exception
{
List results = GroupPeer.doSelect(criteria);
GroupSet rs = new GroupSet();
for (int i = 0; i < results.size(); i++)
{
rs.add((Group) results.get(i));
}
return rs;
}