oauth.signpost.http.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.json.web.service.client Show documentation
Show all versions of com.liferay.portal.json.web.service.client Show documentation
Liferay Portal JSON Web Service Client
The 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 - 2025 Weber Informatics LLC | Privacy Policy