com.softlayer.api.http.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
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 {
public int getStatusCode();
public Map> getHeaders();
/** When this is used by the caller, he is expected to close it */
public InputStream getInputStream();
}