}
public static HttpUriRequest httpRequest() {
HttpUriRequest httpUriRequest = null;
try {
httpUriRequest = new HttpGetWithEntity(new URI("http",
null, "localhost", 9200, "/_status", null, null));
} catch (URISyntaxException e) {
throw new IllegalArgumentException(e);
}
return httpUriRequest;