All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.loway.oss.ari4java.tools.HttpClient Maven / Gradle / Ivy

There is a newer version: 0.17.0
Show newest version
package ch.loway.oss.ari4java.tools;

import java.util.List;

/**
 * Interface to pluggable HTTP client implementation
 *
 * @author mwalton
 */
public interface HttpClient {

    String httpActionSync(String uri, String method, List parametersQuery, String body, List errors) throws RestException;

    byte[] httpActionSyncAsBytes(String uri, String method, List parametersQuery, String body, List errors) throws RestException;

    void httpActionAsync(String uri, String method, List parametersQuery, String body, List errors, HttpResponseHandler responseHandler, boolean binary) throws RestException;

    void destroy();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy