//@SuppressWarnings({"rawtypes", "unchecked" }) // necessary to stop Jersey issuing warnings due to <?>
@POST
@Path("conventionSearches")
public Response search(ConventionSearchRequest request) {
ConventionSearchResult result = getConventionMaster().searchConvention(request);
return responseOkFudge(result);
}