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

com.yuweix.kuafu.http.response.HttpResponse Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.http.response;


import org.apache.http.Header;
import javax.servlet.http.Cookie;
import java.util.List;


/**
 * @author yuwei
 */
public interface HttpResponse {
	boolean isSuccess();
	int getStatus();
	String getErrorMessage();
	B getBody();
	List getCookieList();
	List
getHeaderList(); String getContentType(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy