use of org.apache.http.client.methods.RequestBuilder in project asterixdb by apache.
the class HttpServerTest method request.
protected HttpUriRequest request(String query) throws URISyntaxException {
URI uri = new URI(PROTOCOL, null, HOST, PORT, PATH, query, null);
RequestBuilder builder = RequestBuilder.get(uri);
builder.setCharset(StandardCharsets.UTF_8);
return builder.build();
}
Aggregations