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

org.ektorp.http.HttpResponse Maven / Gradle / Ivy

package org.ektorp.http;

import java.io.*;

public interface HttpResponse {

	boolean isSuccessful();
	int getCode();
	String getRequestURI();
	String getContentType();
	long getContentLength();
	InputStream getContent();
	String getETag();
	void releaseConnection();
	void abort();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy