@SuppressWarnings("unchecked")
public IEntity newInstance(String key, Class type) throws GroupsException {
if (org.jasig.portal.EntityTypes.getEntityTypeID(type) == null) {
throw new GroupsException("Invalid group type: " + type);
}
return new EntityImpl(key, type);
}