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

oauth.signpost.http.HttpResponse Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package oauth.signpost.http;

import java.io.IOException;
import java.io.InputStream;

public interface HttpResponse {

    int getStatusCode() throws IOException;

    String getReasonPhrase() throws Exception;

    InputStream getContent() throws IOException;

    /**
     * Returns the underlying response object, in case you need to work on it
     * directly.
     * 
     * @return the wrapped response object
     */
    Object unwrap();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy