package com.walker.remote;
|
|
import org.apache.hc.client5.http.cookie.CookieStore;
|
|
/**
|
* 描述:响应返回的结果对象,主要是包含了cookie信息
|
* @author 时克英
|
* @date 2017年11月3日 上午10:57:18
|
*/
|
|
public class ResultData {
|
|
private String html;
|
|
private CookieStore cookiestore;
|
|
public String getHtml() {
|
return html;
|
}
|
|
public void setHtml(String html) {
|
this.html = html;
|
}
|
|
public CookieStore getCookiestore() {
|
return cookiestore;
|
}
|
|
public void setCookiestore(CookieStore cookiestore) {
|
this.cookiestore = cookiestore;
|
}
|
|
|
}
|