private void findCountyByPoint(CensusLookupResponse apiResponse, Point point) {
final Criteria stateCriteria = county2010DAO.createCriteria();
stateCriteria.add(SpatialRestrictions.contains("geometry", point));
County2010 county = county2010DAO.findByCriteria(stateCriteria);
if (county != null) {
county.setEnvelope(new Envelope(county.getGeometry()
.getEnvelopeInternal()));
apiResponse.getCensusLookupBaseResponse().getCounties().add(county);
}
ValidationUtil.isEmptyResult(apiResponse, apiResponse
.getCensusLookupBaseResponse().getCounties(),