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

com.softlayer.api.http.HttpResponse Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy