MCPcopy Index your code
hub / github.com/ari4java/ari4java / HttpClient

Interface HttpClient

src/main/java/ch/loway/oss/ari4java/tools/HttpClient.java:10–20  ·  view source on GitHub ↗

Interface to pluggable HTTP client implementation @author mwalton

Source from the content-addressed store, hash-verified

8 * @author mwalton
9 */
10public interface HttpClient {
11
12 String httpActionSync(String uri, String method, List<HttpParam> parametersQuery, String body, List<HttpResponse> errors) throws RestException;
13
14 byte[] httpActionSyncAsBytes(String uri, String method, List<HttpParam> parametersQuery, String body, List<HttpResponse> errors) throws RestException;
15
16 void httpActionAsync(String uri, String method, List<HttpParam> parametersQuery, String body, List<HttpResponse> errors, HttpResponseHandler responseHandler, boolean binary) throws RestException;
17
18 void destroy();
19
20}

Callers 7

testBuildMethod · 0.65
testDetectAriVersionMethod · 0.65
testHttpActionSyncMethod · 0.65
detectAriVersionMethod · 0.65
httpActionSyncMethod · 0.65
httpActionSyncAsBytesMethod · 0.65
httpActionAsyncMethod · 0.65

Implementers 1

NettyHttpClientsrc/main/java/ch/loway/oss/ari4java/to

Calls

no outgoing calls

Tested by

no test coverage detected