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

technology.semi.weaviate.client.base.http.HttpClient Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package technology.semi.weaviate.client.base.http;

public interface HttpClient {
  HttpResponse sendGetRequest(String url) throws Exception;
  HttpResponse sendPostRequest(String url, String json) throws Exception;
  HttpResponse sendPutRequest(String url, String json) throws Exception;
  HttpResponse sendPatchRequest(String url, String json) throws Exception;
  HttpResponse sendDeleteRequest(String url, String json) throws Exception;
  HttpResponse sendHeadRequest(String url) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy