
com.softlayer.api.http.HttpResponse Maven / Gradle / Ivy
package com.softlayer.api.http;
import java.io.InputStream;
import java.util.List;
import java.util.Map;
/** Interface representing an HTTP response from the HTTP client */
public interface HttpResponse {
int getStatusCode();
Map> getHeaders();
/** When this is used by the caller, he is expected to close it */
InputStream getInputStream();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy