return group.getValueObject();
}
public Group create(GroupVO groupVO, Database db) throws ConstraintException, SystemException, Exception
{
Group group = new GroupImpl();
group.setValueObject(groupVO);
group = (Group) createEntity(group, db);
return group;
}