This commit is contained in:
kamhung
2015-12-01 16:56:56 +08:00
parent e0fdee3a48
commit 1b5358a2a7

View File

@@ -14,15 +14,15 @@ import java.util.*;
*/
public final class HttpClient {
private List<HttpCookie> cookies;
protected List<HttpCookie> cookies;
private Map<String, String> headers;
protected Map<String, String> headers;
private Map<String, String> params;
protected Map<String, String> params;
private final HttpFactory factory;
protected final HttpFactory factory;
private final URL url;
protected final URL url;
HttpClient(HttpFactory factory, URL url) {
this.factory = factory;