Package org.elasticsearch.test.rest.client.http

Examples of org.elasticsearch.test.rest.client.http.HttpGetWithEntity


    }
  
    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;
View Full Code Here


    }
  
    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;
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.test.rest.client.http.HttpGetWithEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.