*/
public static boolean checkExists( Group group )
throws DataBackendException, Exception
{
Criteria criteria = new Criteria();
criteria.addSelectColumn(GROUP_ID);
criteria.add(NAME, ((SecurityObject)group).getName());
Vector results = BasePeer.doSelect(criteria);
if(results.size() > 1)
{
throw new DataBackendException("Multiple groups named '" +