com.ecwid.consul.transport.HttpTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consul-api Show documentation
Show all versions of consul-api Show documentation
Java client for Consul HTTP API (http://consul.io)
package com.ecwid.consul.transport;
/**
* @author Vasily Vasilkov ([email protected])
*/
public interface HttpTransport {
public RawResponse makeGetRequest(String url);
public RawResponse makePutRequest(String url, String content);
public RawResponse makePutRequest(String url, byte[] content);
public RawResponse makeDeleteRequest(String url);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy