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

com.ecwid.consul.transport.HttpTransport Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
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