&& (request.getProperties().get(GetFeatureInfoRequest.QUERY_Y).equals("200"))) {
String success = "SUCCESS";
ByteArrayInputStream input = new ByteArrayInputStream(success.getBytes());
HTTPResponse response = new MockHttpResponse( input, "text/html");
return new GetFeatureInfoResponse( response );
}
String failure = "FAILURE";
ByteArrayInputStream input = new ByteArrayInputStream(failure.getBytes());
HTTPResponse response = new MockHttpResponse( input, "text/html");
return new GetFeatureInfoResponse( response );
}