com.redhat.lightblue.client.http.transport.HttpTransport Maven / Gradle / Ivy
package com.redhat.lightblue.client.http.transport;
import java.io.Closeable;
import com.redhat.lightblue.client.http.LightblueHttpClientException;
import com.redhat.lightblue.client.request.LightblueRequest;
public interface HttpTransport extends Closeable {
String executeRequest(LightblueRequest request, String baseUri) throws LightblueHttpClientException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy