blob: a04d0cd279949665965ecf690e003bad24e07577 [file] [log] [blame]
Tor Norbyebd65b232019-01-07 18:09:28 -08001// Signature format: 2.0
Paul Duffin03a95652017-07-14 13:48:42 +01002package android.net.compatibility {
3
4 public class WebAddress {
Tor Norbyebd65b232019-01-07 18:09:28 -08005 ctor public WebAddress(String) throws java.lang.IllegalArgumentException;
6 method public String getAuthInfo();
7 method public String getHost();
8 method public String getPath();
Paul Duffin03a95652017-07-14 13:48:42 +01009 method public int getPort();
Tor Norbyebd65b232019-01-07 18:09:28 -080010 method public String getScheme();
11 method public void setAuthInfo(String);
12 method public void setHost(String);
13 method public void setPath(String);
Paul Duffin03a95652017-07-14 13:48:42 +010014 method public void setPort(int);
Tor Norbyebd65b232019-01-07 18:09:28 -080015 method public void setScheme(String);
Paul Duffin03a95652017-07-14 13:48:42 +010016 }
17
18}
19
20package android.net.http {
21
22 public final class AndroidHttpClient implements org.apache.http.client.HttpClient {
23 method public void close();
24 method public void disableCurlLogging();
Tor Norbyebd65b232019-01-07 18:09:28 -080025 method public void enableCurlLogging(String, int);
Paul Duffin03a95652017-07-14 13:48:42 +010026 method public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws java.io.IOException;
27 method public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext) throws java.io.IOException;
28 method public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest) throws java.io.IOException;
29 method public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws java.io.IOException;
30 method public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
31 method public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
32 method public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
33 method public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
34 method public static org.apache.http.entity.AbstractHttpEntity getCompressedEntity(byte[], android.content.ContentResolver) throws java.io.IOException;
35 method public org.apache.http.conn.ClientConnectionManager getConnectionManager();
36 method public static long getMinGzipSize(android.content.ContentResolver);
37 method public org.apache.http.params.HttpParams getParams();
38 method public static java.io.InputStream getUngzippedContent(org.apache.http.HttpEntity) throws java.io.IOException;
39 method public static void modifyRequestToAcceptGzipResponse(org.apache.http.HttpRequest);
Tor Norbyebd65b232019-01-07 18:09:28 -080040 method public static android.net.http.AndroidHttpClient newInstance(String, android.content.Context);
41 method public static android.net.http.AndroidHttpClient newInstance(String);
42 method public static long parseDate(String);
Paul Duffin03a95652017-07-14 13:48:42 +010043 field public static long DEFAULT_SYNC_MIN_GZIP_BYTES;
44 }
45
46 public class AndroidHttpClientConnection implements org.apache.http.HttpConnection org.apache.http.HttpInetConnection {
47 ctor public AndroidHttpClientConnection();
48 method public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
49 method public void close() throws java.io.IOException;
50 method protected void doFlush() throws java.io.IOException;
51 method public void flush() throws java.io.IOException;
52 method public java.net.InetAddress getLocalAddress();
53 method public int getLocalPort();
54 method public org.apache.http.HttpConnectionMetrics getMetrics();
55 method public java.net.InetAddress getRemoteAddress();
56 method public int getRemotePort();
57 method public int getSocketTimeout();
58 method public boolean isOpen();
59 method public boolean isStale();
60 method public org.apache.http.StatusLine parseResponseHeader(android.net.http.Headers) throws java.io.IOException, org.apache.http.ParseException;
61 method public org.apache.http.HttpEntity receiveResponseEntity(android.net.http.Headers);
62 method public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
63 method public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
64 method public void setSocketTimeout(int);
65 method public void shutdown() throws java.io.IOException;
66 }
67
68 public class CertificateChainValidator {
Tor Norbyebd65b232019-01-07 18:09:28 -080069 method public android.net.http.SslError doHandshakeAndValidateServerCertificates(android.net.http.HttpsConnection, javax.net.ssl.SSLSocket, String) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +010070 method public static android.net.http.CertificateChainValidator getInstance();
71 method public static void handleTrustStorageUpdate();
Tor Norbyebd65b232019-01-07 18:09:28 -080072 method public static android.net.http.SslError verifyServerCertificates(byte[][], String, String) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +010073 }
74
Paul Duffin03a95652017-07-14 13:48:42 +010075 public class DelegatingSSLSession implements javax.net.ssl.SSLSession {
76 ctor protected DelegatingSSLSession();
77 method public int getApplicationBufferSize();
Tor Norbyebd65b232019-01-07 18:09:28 -080078 method public String getCipherSuite();
Paul Duffin03a95652017-07-14 13:48:42 +010079 method public long getCreationTime();
80 method public byte[] getId();
81 method public long getLastAccessedTime();
82 method public java.security.cert.Certificate[] getLocalCertificates();
83 method public java.security.Principal getLocalPrincipal();
84 method public int getPacketBufferSize();
85 method public javax.security.cert.X509Certificate[] getPeerCertificateChain() throws javax.net.ssl.SSLPeerUnverifiedException;
86 method public java.security.cert.Certificate[] getPeerCertificates() throws javax.net.ssl.SSLPeerUnverifiedException;
Tor Norbyebd65b232019-01-07 18:09:28 -080087 method public String getPeerHost();
Paul Duffin03a95652017-07-14 13:48:42 +010088 method public int getPeerPort();
89 method public java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException;
Tor Norbyebd65b232019-01-07 18:09:28 -080090 method public String getProtocol();
Paul Duffin03a95652017-07-14 13:48:42 +010091 method public javax.net.ssl.SSLSessionContext getSessionContext();
Tor Norbyebd65b232019-01-07 18:09:28 -080092 method public Object getValue(String);
93 method public String[] getValueNames();
Paul Duffin03a95652017-07-14 13:48:42 +010094 method public void invalidate();
95 method public boolean isValid();
Tor Norbyebd65b232019-01-07 18:09:28 -080096 method public void putValue(String, Object);
97 method public void removeValue(String);
Paul Duffin03a95652017-07-14 13:48:42 +010098 }
99
100 public static class DelegatingSSLSession.CertificateWrap extends android.net.http.DelegatingSSLSession {
101 ctor public DelegatingSSLSession.CertificateWrap(java.security.cert.Certificate);
102 }
103
Tor Norbyebd65b232019-01-07 18:09:28 -0800104 public interface EventHandler {
105 method public void certificate(android.net.http.SslCertificate);
106 method public void data(byte[], int);
107 method public void endData();
108 method public void error(int, String);
109 method public boolean handleSslErrorRequest(android.net.http.SslError);
110 method public void headers(android.net.http.Headers);
111 method public void status(int, int, int, String);
Paul Duffin03a95652017-07-14 13:48:42 +0100112 field public static final int ERROR = -1; // 0xffffffff
113 field public static final int ERROR_AUTH = -4; // 0xfffffffc
114 field public static final int ERROR_BAD_URL = -12; // 0xfffffff4
115 field public static final int ERROR_CONNECT = -6; // 0xfffffffa
116 field public static final int ERROR_FAILED_SSL_HANDSHAKE = -11; // 0xfffffff5
117 field public static final int ERROR_IO = -7; // 0xfffffff9
118 field public static final int ERROR_LOOKUP = -2; // 0xfffffffe
119 field public static final int ERROR_PROXYAUTH = -5; // 0xfffffffb
120 field public static final int ERROR_REDIRECT_LOOP = -9; // 0xfffffff7
121 field public static final int ERROR_TIMEOUT = -8; // 0xfffffff8
122 field public static final int ERROR_UNSUPPORTED_AUTH_SCHEME = -3; // 0xfffffffd
123 field public static final int ERROR_UNSUPPORTED_SCHEME = -10; // 0xfffffff6
124 field public static final int FILE_ERROR = -13; // 0xfffffff3
125 field public static final int FILE_NOT_FOUND_ERROR = -14; // 0xfffffff2
126 field public static final int OK = 0; // 0x0
127 field public static final int TOO_MANY_REQUESTS_ERROR = -15; // 0xfffffff1
128 }
129
130 public final class Headers {
131 ctor public Headers();
Tor Norbyebd65b232019-01-07 18:09:28 -0800132 method public String getAcceptRanges();
133 method public String getCacheControl();
Paul Duffin03a95652017-07-14 13:48:42 +0100134 method public int getConnectionType();
Tor Norbyebd65b232019-01-07 18:09:28 -0800135 method public String getContentDisposition();
136 method public String getContentEncoding();
Paul Duffin03a95652017-07-14 13:48:42 +0100137 method public long getContentLength();
Tor Norbyebd65b232019-01-07 18:09:28 -0800138 method public String getContentType();
139 method public String getEtag();
140 method public String getExpires();
Paul Duffin03a95652017-07-14 13:48:42 +0100141 method public void getHeaders(android.net.http.Headers.HeaderCallback);
Tor Norbyebd65b232019-01-07 18:09:28 -0800142 method public String getLastModified();
143 method public String getLocation();
144 method public String getPragma();
145 method public String getProxyAuthenticate();
146 method public String getRefresh();
Paul Duffin03a95652017-07-14 13:48:42 +0100147 method public java.util.ArrayList<java.lang.String> getSetCookie();
148 method public long getTransferEncoding();
Tor Norbyebd65b232019-01-07 18:09:28 -0800149 method public String getWwwAuthenticate();
150 method public String getXPermittedCrossDomainPolicies();
Paul Duffin03a95652017-07-14 13:48:42 +0100151 method public void parseHeader(org.apache.http.util.CharArrayBuffer);
Tor Norbyebd65b232019-01-07 18:09:28 -0800152 method public void setAcceptRanges(String);
153 method public void setCacheControl(String);
154 method public void setContentDisposition(String);
155 method public void setContentEncoding(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100156 method public void setContentLength(long);
Tor Norbyebd65b232019-01-07 18:09:28 -0800157 method public void setContentType(String);
158 method public void setEtag(String);
159 method public void setExpires(String);
160 method public void setLastModified(String);
161 method public void setLocation(String);
162 method public void setProxyAuthenticate(String);
163 method public void setWwwAuthenticate(String);
164 method public void setXPermittedCrossDomainPolicies(String);
165 field public static final String ACCEPT_RANGES = "accept-ranges";
166 field public static final String CACHE_CONTROL = "cache-control";
Paul Duffin03a95652017-07-14 13:48:42 +0100167 field public static final int CONN_CLOSE = 1; // 0x1
Tor Norbyebd65b232019-01-07 18:09:28 -0800168 field public static final String CONN_DIRECTIVE = "connection";
Paul Duffin03a95652017-07-14 13:48:42 +0100169 field public static final int CONN_KEEP_ALIVE = 2; // 0x2
Tor Norbyebd65b232019-01-07 18:09:28 -0800170 field public static final String CONTENT_DISPOSITION = "content-disposition";
171 field public static final String CONTENT_ENCODING = "content-encoding";
172 field public static final String CONTENT_LEN = "content-length";
173 field public static final String CONTENT_TYPE = "content-type";
174 field public static final String ETAG = "etag";
175 field public static final String EXPIRES = "expires";
176 field public static final String LAST_MODIFIED = "last-modified";
177 field public static final String LOCATION = "location";
Paul Duffin03a95652017-07-14 13:48:42 +0100178 field public static final int NO_CONN_TYPE = 0; // 0x0
179 field public static final long NO_CONTENT_LENGTH = -1L; // 0xffffffffffffffffL
180 field public static final long NO_TRANSFER_ENCODING = 0L; // 0x0L
Tor Norbyebd65b232019-01-07 18:09:28 -0800181 field public static final String PRAGMA = "pragma";
182 field public static final String PROXY_AUTHENTICATE = "proxy-authenticate";
183 field public static final String PROXY_CONNECTION = "proxy-connection";
184 field public static final String REFRESH = "refresh";
185 field public static final String SET_COOKIE = "set-cookie";
186 field public static final String TRANSFER_ENCODING = "transfer-encoding";
187 field public static final String WWW_AUTHENTICATE = "www-authenticate";
188 field public static final String X_PERMITTED_CROSS_DOMAIN_POLICIES = "x-permitted-cross-domain-policies";
Paul Duffin03a95652017-07-14 13:48:42 +0100189 }
190
Tor Norbyebd65b232019-01-07 18:09:28 -0800191 public static interface Headers.HeaderCallback {
192 method public void header(String, String);
Paul Duffin03a95652017-07-14 13:48:42 +0100193 }
194
195 public class HttpAuthHeader {
Tor Norbyebd65b232019-01-07 18:09:28 -0800196 ctor public HttpAuthHeader(String);
197 method public String getAlgorithm();
198 method public String getNonce();
199 method public String getOpaque();
200 method public String getPassword();
201 method public String getQop();
202 method public String getRealm();
Paul Duffin03a95652017-07-14 13:48:42 +0100203 method public int getScheme();
204 method public boolean getStale();
Tor Norbyebd65b232019-01-07 18:09:28 -0800205 method public String getUsername();
Paul Duffin03a95652017-07-14 13:48:42 +0100206 method public boolean isBasic();
207 method public boolean isDigest();
208 method public boolean isProxy();
209 method public boolean isSupportedScheme();
Tor Norbyebd65b232019-01-07 18:09:28 -0800210 method public void setPassword(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100211 method public void setProxy();
Tor Norbyebd65b232019-01-07 18:09:28 -0800212 method public void setUsername(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100213 field public static final int BASIC = 1; // 0x1
Tor Norbyebd65b232019-01-07 18:09:28 -0800214 field public static final String BASIC_TOKEN = "Basic";
Paul Duffin03a95652017-07-14 13:48:42 +0100215 field public static final int DIGEST = 2; // 0x2
Tor Norbyebd65b232019-01-07 18:09:28 -0800216 field public static final String DIGEST_TOKEN = "Digest";
Paul Duffin03a95652017-07-14 13:48:42 +0100217 field public static final int UNKNOWN = 0; // 0x0
218 }
219
Jeff Sharkey575d3712017-12-06 22:24:30 -0700220 public class HttpsConnection {
Paul Duffin03a95652017-07-14 13:48:42 +0100221 method public static void initializeEngine(java.io.File);
Paul Duffin03a95652017-07-14 13:48:42 +0100222 }
223
224 public class LoggingEventHandler implements android.net.http.EventHandler {
225 ctor public LoggingEventHandler();
226 method public void certificate(android.net.http.SslCertificate);
227 method public void data(byte[], int);
228 method public void endData();
Tor Norbyebd65b232019-01-07 18:09:28 -0800229 method public void error(int, String);
Paul Duffin03a95652017-07-14 13:48:42 +0100230 method public boolean handleSslErrorRequest(android.net.http.SslError);
231 method public void headers(android.net.http.Headers);
Tor Norbyebd65b232019-01-07 18:09:28 -0800232 method public void locationChanged(String, boolean);
Paul Duffin03a95652017-07-14 13:48:42 +0100233 method public void requestSent();
Tor Norbyebd65b232019-01-07 18:09:28 -0800234 method public void status(int, int, int, String);
Paul Duffin03a95652017-07-14 13:48:42 +0100235 }
236
Paul Duffin03a95652017-07-14 13:48:42 +0100237 public class RequestHandle {
Tor Norbyebd65b232019-01-07 18:09:28 -0800238 ctor public RequestHandle(android.net.http.RequestQueue, String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, java.io.InputStream, int, android.net.http.Request);
239 ctor public RequestHandle(android.net.http.RequestQueue, String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, java.io.InputStream, int, android.net.http.Request, android.net.http.Connection);
240 method public static String authorizationHeader(boolean);
Paul Duffin03a95652017-07-14 13:48:42 +0100241 method public void cancel();
Tor Norbyebd65b232019-01-07 18:09:28 -0800242 method public static String computeBasicAuthResponse(String, String);
243 method public String getMethod();
Paul Duffin03a95652017-07-14 13:48:42 +0100244 method public int getRedirectCount();
245 method public void handleSslErrorResponse(boolean);
246 method public boolean isRedirectMax();
247 method public void pauseRequest(boolean);
248 method public void processRequest();
249 method public void setRedirectCount(int);
Tor Norbyebd65b232019-01-07 18:09:28 -0800250 method public void setupBasicAuthResponse(boolean, String, String);
251 method public void setupDigestAuthResponse(boolean, String, String, String, String, String, String, String);
252 method public boolean setupRedirect(String, int, java.util.Map<java.lang.String,java.lang.String>);
Paul Duffin03a95652017-07-14 13:48:42 +0100253 method public void waitUntilComplete();
254 field public static final int MAX_REDIRECT_COUNT = 16; // 0x10
255 }
256
Jeff Sharkey575d3712017-12-06 22:24:30 -0700257 public class RequestQueue {
Paul Duffin03a95652017-07-14 13:48:42 +0100258 ctor public RequestQueue(android.content.Context);
259 ctor public RequestQueue(android.content.Context, int);
Tor Norbyebd65b232019-01-07 18:09:28 -0800260 method public void disablePlatformNotifications();
261 method public void enablePlatformNotifications();
Paul Duffin03a95652017-07-14 13:48:42 +0100262 method public org.apache.http.HttpHost getProxyHost();
Tor Norbyebd65b232019-01-07 18:09:28 -0800263 method public android.net.http.Request getRequest();
264 method public android.net.http.Request getRequest(org.apache.http.HttpHost);
265 method public boolean haveRequest(org.apache.http.HttpHost);
266 method public android.net.http.RequestHandle queueRequest(String, String, java.util.Map<java.lang.String,java.lang.String>, android.net.http.EventHandler, java.io.InputStream, int);
267 method public android.net.http.RequestHandle queueRequest(String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, android.net.http.EventHandler, java.io.InputStream, int);
268 method protected void queueRequest(android.net.http.Request, boolean);
269 method public android.net.http.RequestHandle queueSynchronousRequest(String, android.net.compatibility.WebAddress, String, java.util.Map<java.lang.String,java.lang.String>, android.net.http.EventHandler, java.io.InputStream, int);
Paul Duffin03a95652017-07-14 13:48:42 +0100270 method public void requeueRequest(android.net.http.Request);
271 method public void shutdown();
272 method public void startTiming();
273 method public void stopTiming();
274 }
275
Paul Duffin03a95652017-07-14 13:48:42 +0100276}
277
278package com.android.internal.http.multipart {
279
280 public class ByteArrayPartSource implements com.android.internal.http.multipart.PartSource {
Tor Norbyebd65b232019-01-07 18:09:28 -0800281 ctor public ByteArrayPartSource(String, byte[]);
Paul Duffin03a95652017-07-14 13:48:42 +0100282 method public java.io.InputStream createInputStream();
Tor Norbyebd65b232019-01-07 18:09:28 -0800283 method public String getFileName();
Paul Duffin03a95652017-07-14 13:48:42 +0100284 method public long getLength();
285 }
286
287 public class FilePart extends com.android.internal.http.multipart.PartBase {
Tor Norbyebd65b232019-01-07 18:09:28 -0800288 ctor public FilePart(String, com.android.internal.http.multipart.PartSource, String, String);
289 ctor public FilePart(String, com.android.internal.http.multipart.PartSource);
290 ctor public FilePart(String, java.io.File) throws java.io.FileNotFoundException;
291 ctor public FilePart(String, java.io.File, String, String) throws java.io.FileNotFoundException;
292 ctor public FilePart(String, String, java.io.File) throws java.io.FileNotFoundException;
293 ctor public FilePart(String, String, java.io.File, String, String) throws java.io.FileNotFoundException;
Paul Duffin03a95652017-07-14 13:48:42 +0100294 method protected com.android.internal.http.multipart.PartSource getSource();
295 method protected long lengthOfData();
296 method protected void sendData(java.io.OutputStream) throws java.io.IOException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800297 field public static final String DEFAULT_CHARSET = "ISO-8859-1";
298 field public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
299 field public static final String DEFAULT_TRANSFER_ENCODING = "binary";
300 field protected static final String FILE_NAME = "; filename=";
Paul Duffin03a95652017-07-14 13:48:42 +0100301 }
302
303 public class FilePartSource implements com.android.internal.http.multipart.PartSource {
304 ctor public FilePartSource(java.io.File) throws java.io.FileNotFoundException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800305 ctor public FilePartSource(String, java.io.File) throws java.io.FileNotFoundException;
Paul Duffin03a95652017-07-14 13:48:42 +0100306 method public java.io.InputStream createInputStream() throws java.io.IOException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800307 method public String getFileName();
Paul Duffin03a95652017-07-14 13:48:42 +0100308 method public long getLength();
309 }
310
311 public class MultipartEntity extends org.apache.http.entity.AbstractHttpEntity {
312 ctor public MultipartEntity(com.android.internal.http.multipart.Part[], org.apache.http.params.HttpParams);
313 ctor public MultipartEntity(com.android.internal.http.multipart.Part[]);
314 method public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
315 method public long getContentLength();
Tor Norbyebd65b232019-01-07 18:09:28 -0800316 method public org.apache.http.Header getContentType();
Paul Duffin03a95652017-07-14 13:48:42 +0100317 method protected byte[] getMultipartBoundary();
318 method public boolean isRepeatable();
319 method public boolean isStreaming();
320 method public void writeTo(java.io.OutputStream) throws java.io.IOException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800321 field public static final String MULTIPART_BOUNDARY = "http.method.multipart.boundary";
Paul Duffin03a95652017-07-14 13:48:42 +0100322 field protected com.android.internal.http.multipart.Part[] parts;
323 }
324
325 public abstract class Part {
326 ctor public Part();
Tor Norbyebd65b232019-01-07 18:09:28 -0800327 method @Deprecated public static String getBoundary();
328 method public abstract String getCharSet();
329 method public abstract String getContentType();
Paul Duffin03a95652017-07-14 13:48:42 +0100330 method public static long getLengthOfParts(com.android.internal.http.multipart.Part[]) throws java.io.IOException;
331 method public static long getLengthOfParts(com.android.internal.http.multipart.Part[], byte[]) throws java.io.IOException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800332 method public abstract String getName();
Paul Duffin03a95652017-07-14 13:48:42 +0100333 method protected byte[] getPartBoundary();
Tor Norbyebd65b232019-01-07 18:09:28 -0800334 method public abstract String getTransferEncoding();
Paul Duffin03a95652017-07-14 13:48:42 +0100335 method public boolean isRepeatable();
336 method public long length() throws java.io.IOException;
337 method protected abstract long lengthOfData() throws java.io.IOException;
338 method public void send(java.io.OutputStream) throws java.io.IOException;
339 method protected void sendContentTypeHeader(java.io.OutputStream) throws java.io.IOException;
340 method protected abstract void sendData(java.io.OutputStream) throws java.io.IOException;
341 method protected void sendDispositionHeader(java.io.OutputStream) throws java.io.IOException;
342 method protected void sendEnd(java.io.OutputStream) throws java.io.IOException;
343 method protected void sendEndOfHeader(java.io.OutputStream) throws java.io.IOException;
344 method public static void sendParts(java.io.OutputStream, com.android.internal.http.multipart.Part[]) throws java.io.IOException;
345 method public static void sendParts(java.io.OutputStream, com.android.internal.http.multipart.Part[], byte[]) throws java.io.IOException;
346 method protected void sendStart(java.io.OutputStream) throws java.io.IOException;
347 method protected void sendTransferEncodingHeader(java.io.OutputStream) throws java.io.IOException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800348 field @Deprecated protected static final String BOUNDARY = "----------------314159265358979323846";
349 field @Deprecated protected static final byte[] BOUNDARY_BYTES;
350 field protected static final String CHARSET = "; charset=";
Paul Duffin03a95652017-07-14 13:48:42 +0100351 field protected static final byte[] CHARSET_BYTES;
Tor Norbyebd65b232019-01-07 18:09:28 -0800352 field protected static final String CONTENT_DISPOSITION = "Content-Disposition: form-data; name=";
Paul Duffin03a95652017-07-14 13:48:42 +0100353 field protected static final byte[] CONTENT_DISPOSITION_BYTES;
Tor Norbyebd65b232019-01-07 18:09:28 -0800354 field protected static final String CONTENT_TRANSFER_ENCODING = "Content-Transfer-Encoding: ";
Paul Duffin03a95652017-07-14 13:48:42 +0100355 field protected static final byte[] CONTENT_TRANSFER_ENCODING_BYTES;
Tor Norbyebd65b232019-01-07 18:09:28 -0800356 field protected static final String CONTENT_TYPE = "Content-Type: ";
Paul Duffin03a95652017-07-14 13:48:42 +0100357 field protected static final byte[] CONTENT_TYPE_BYTES;
Tor Norbyebd65b232019-01-07 18:09:28 -0800358 field protected static final String CRLF = "\r\n";
Paul Duffin03a95652017-07-14 13:48:42 +0100359 field protected static final byte[] CRLF_BYTES;
Tor Norbyebd65b232019-01-07 18:09:28 -0800360 field protected static final String EXTRA = "--";
Paul Duffin03a95652017-07-14 13:48:42 +0100361 field protected static final byte[] EXTRA_BYTES;
Tor Norbyebd65b232019-01-07 18:09:28 -0800362 field protected static final String QUOTE = "\"";
Paul Duffin03a95652017-07-14 13:48:42 +0100363 field protected static final byte[] QUOTE_BYTES;
364 }
365
366 public abstract class PartBase extends com.android.internal.http.multipart.Part {
Tor Norbyebd65b232019-01-07 18:09:28 -0800367 ctor public PartBase(String, String, String, String);
368 method public String getCharSet();
369 method public String getContentType();
370 method public String getName();
371 method public String getTransferEncoding();
372 method public void setCharSet(String);
373 method public void setContentType(String);
374 method public void setName(String);
375 method public void setTransferEncoding(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100376 }
377
Tor Norbyebd65b232019-01-07 18:09:28 -0800378 public interface PartSource {
379 method public java.io.InputStream createInputStream() throws java.io.IOException;
380 method public String getFileName();
381 method public long getLength();
Paul Duffin03a95652017-07-14 13:48:42 +0100382 }
383
384 public class StringPart extends com.android.internal.http.multipart.PartBase {
Tor Norbyebd65b232019-01-07 18:09:28 -0800385 ctor public StringPart(String, String, String);
386 ctor public StringPart(String, String);
Paul Duffin03a95652017-07-14 13:48:42 +0100387 method protected long lengthOfData();
388 method protected void sendData(java.io.OutputStream) throws java.io.IOException;
Tor Norbyebd65b232019-01-07 18:09:28 -0800389 field public static final String DEFAULT_CHARSET = "US-ASCII";
390 field public static final String DEFAULT_CONTENT_TYPE = "text/plain";
391 field public static final String DEFAULT_TRANSFER_ENCODING = "8bit";
Paul Duffin03a95652017-07-14 13:48:42 +0100392 }
393
394}
395
396package org.apache.commons.codec {
397
Tor Norbyebd65b232019-01-07 18:09:28 -0800398 @Deprecated public interface BinaryDecoder extends org.apache.commons.codec.Decoder {
399 method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100400 }
401
Tor Norbyebd65b232019-01-07 18:09:28 -0800402 @Deprecated public interface BinaryEncoder extends org.apache.commons.codec.Encoder {
403 method @Deprecated public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100404 }
405
Tor Norbyebd65b232019-01-07 18:09:28 -0800406 @Deprecated public interface Decoder {
407 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100408 }
409
Tor Norbyebd65b232019-01-07 18:09:28 -0800410 @Deprecated public class DecoderException extends java.lang.Exception {
411 ctor @Deprecated public DecoderException(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100412 }
413
Tor Norbyebd65b232019-01-07 18:09:28 -0800414 @Deprecated public interface Encoder {
415 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100416 }
417
Tor Norbyebd65b232019-01-07 18:09:28 -0800418 @Deprecated public class EncoderException extends java.lang.Exception {
419 ctor @Deprecated public EncoderException(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100420 }
421
Tor Norbyebd65b232019-01-07 18:09:28 -0800422 @Deprecated public interface StringDecoder extends org.apache.commons.codec.Decoder {
423 method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100424 }
425
Tor Norbyebd65b232019-01-07 18:09:28 -0800426 @Deprecated public interface StringEncoder extends org.apache.commons.codec.Encoder {
427 method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100428 }
429
Tor Norbyebd65b232019-01-07 18:09:28 -0800430 @Deprecated public class StringEncoderComparator implements java.util.Comparator {
431 ctor @Deprecated public StringEncoderComparator();
432 ctor @Deprecated public StringEncoderComparator(org.apache.commons.codec.StringEncoder);
433 method @Deprecated public int compare(Object, Object);
Paul Duffin03a95652017-07-14 13:48:42 +0100434 }
435
436}
437
438package org.apache.commons.codec.binary {
439
Tor Norbyebd65b232019-01-07 18:09:28 -0800440 @Deprecated public class Base64 implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder {
441 ctor @Deprecated public Base64();
442 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
443 method @Deprecated public byte[] decode(byte[]);
444 method @Deprecated public static byte[] decodeBase64(byte[]);
445 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
446 method @Deprecated public byte[] encode(byte[]);
447 method @Deprecated public static byte[] encodeBase64(byte[]);
448 method @Deprecated public static byte[] encodeBase64(byte[], boolean);
449 method @Deprecated public static byte[] encodeBase64Chunked(byte[]);
450 method @Deprecated public static boolean isArrayByteBase64(byte[]);
Paul Duffin03a95652017-07-14 13:48:42 +0100451 }
452
Tor Norbyebd65b232019-01-07 18:09:28 -0800453 @Deprecated public class BinaryCodec implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder {
454 ctor @Deprecated public BinaryCodec();
455 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
456 method @Deprecated public byte[] decode(byte[]);
457 method @Deprecated public byte[] encode(byte[]);
458 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
459 method @Deprecated public static byte[] fromAscii(char[]);
460 method @Deprecated public static byte[] fromAscii(byte[]);
461 method @Deprecated public static byte[] toAsciiBytes(byte[]);
462 method @Deprecated public static char[] toAsciiChars(byte[]);
463 method @Deprecated public static String toAsciiString(byte[]);
464 method @Deprecated public byte[] toByteArray(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100465 }
466
Tor Norbyebd65b232019-01-07 18:09:28 -0800467 @Deprecated public class Hex implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder {
468 ctor @Deprecated public Hex();
469 method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
470 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
471 method @Deprecated public static byte[] decodeHex(char[]) throws org.apache.commons.codec.DecoderException;
472 method @Deprecated public byte[] encode(byte[]);
473 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
474 method @Deprecated public static char[] encodeHex(byte[]);
475 method @Deprecated protected static int toDigit(char, int) throws org.apache.commons.codec.DecoderException;
Paul Duffin03a95652017-07-14 13:48:42 +0100476 }
477
478}
479
480package org.apache.commons.codec.language {
481
Tor Norbyebd65b232019-01-07 18:09:28 -0800482 @Deprecated public class DoubleMetaphone implements org.apache.commons.codec.StringEncoder {
483 ctor @Deprecated public DoubleMetaphone();
484 method @Deprecated protected char charAt(String, int);
485 method @Deprecated protected static boolean contains(String, int, int, String[]);
486 method @Deprecated public String doubleMetaphone(String);
487 method @Deprecated public String doubleMetaphone(String, boolean);
488 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
489 method @Deprecated public String encode(String);
490 method @Deprecated public int getMaxCodeLen();
491 method @Deprecated public boolean isDoubleMetaphoneEqual(String, String);
492 method @Deprecated public boolean isDoubleMetaphoneEqual(String, String, boolean);
493 method @Deprecated public void setMaxCodeLen(int);
494 field @Deprecated protected int maxCodeLen;
Paul Duffin03a95652017-07-14 13:48:42 +0100495 }
496
Tor Norbyebd65b232019-01-07 18:09:28 -0800497 @Deprecated public class DoubleMetaphone.DoubleMetaphoneResult {
498 ctor @Deprecated public DoubleMetaphone.DoubleMetaphoneResult(int);
499 method @Deprecated public void append(char);
500 method @Deprecated public void append(char, char);
501 method @Deprecated public void append(String);
502 method @Deprecated public void append(String, String);
503 method @Deprecated public void appendAlternate(char);
504 method @Deprecated public void appendAlternate(String);
505 method @Deprecated public void appendPrimary(char);
506 method @Deprecated public void appendPrimary(String);
507 method @Deprecated public String getAlternate();
508 method @Deprecated public String getPrimary();
509 method @Deprecated public boolean isComplete();
Paul Duffin03a95652017-07-14 13:48:42 +0100510 }
511
Tor Norbyebd65b232019-01-07 18:09:28 -0800512 @Deprecated public class Metaphone implements org.apache.commons.codec.StringEncoder {
513 ctor @Deprecated public Metaphone();
514 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
515 method @Deprecated public String encode(String);
516 method @Deprecated public int getMaxCodeLen();
517 method @Deprecated public boolean isMetaphoneEqual(String, String);
518 method @Deprecated public String metaphone(String);
519 method @Deprecated public void setMaxCodeLen(int);
Paul Duffin03a95652017-07-14 13:48:42 +0100520 }
521
Tor Norbyebd65b232019-01-07 18:09:28 -0800522 @Deprecated public class RefinedSoundex implements org.apache.commons.codec.StringEncoder {
523 ctor @Deprecated public RefinedSoundex();
524 ctor @Deprecated public RefinedSoundex(char[]);
525 method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderException;
526 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
527 method @Deprecated public String encode(String);
528 method @Deprecated public String soundex(String);
529 field @Deprecated public static final org.apache.commons.codec.language.RefinedSoundex US_ENGLISH;
530 field @Deprecated public static final char[] US_ENGLISH_MAPPING;
Paul Duffin03a95652017-07-14 13:48:42 +0100531 }
532
Tor Norbyebd65b232019-01-07 18:09:28 -0800533 @Deprecated public class Soundex implements org.apache.commons.codec.StringEncoder {
534 ctor @Deprecated public Soundex();
535 ctor @Deprecated public Soundex(char[]);
536 method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderException;
537 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
538 method @Deprecated public String encode(String);
539 method @Deprecated public int getMaxLength();
540 method @Deprecated public void setMaxLength(int);
541 method @Deprecated public String soundex(String);
542 field @Deprecated public static final org.apache.commons.codec.language.Soundex US_ENGLISH;
543 field @Deprecated public static final char[] US_ENGLISH_MAPPING;
544 field @Deprecated public static final String US_ENGLISH_MAPPING_STRING = "01230120022455012623010202";
Paul Duffin03a95652017-07-14 13:48:42 +0100545 }
546
547}
548
549package org.apache.commons.codec.net {
550
Tor Norbyebd65b232019-01-07 18:09:28 -0800551 @Deprecated public class BCodec implements org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
552 ctor @Deprecated public BCodec();
553 ctor @Deprecated public BCodec(String);
554 method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
555 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
556 method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderException;
557 method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderException;
558 method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderException;
559 method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
560 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
561 method @Deprecated public String getDefaultCharset();
562 method @Deprecated protected String getEncoding();
Paul Duffin03a95652017-07-14 13:48:42 +0100563 }
564
Tor Norbyebd65b232019-01-07 18:09:28 -0800565 @Deprecated public class QCodec implements org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
566 ctor @Deprecated public QCodec();
567 ctor @Deprecated public QCodec(String);
568 method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
569 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
570 method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderException;
571 method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderException;
572 method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderException;
573 method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
574 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
575 method @Deprecated public String getDefaultCharset();
576 method @Deprecated protected String getEncoding();
577 method @Deprecated public boolean isEncodeBlanks();
578 method @Deprecated public void setEncodeBlanks(boolean);
Paul Duffin03a95652017-07-14 13:48:42 +0100579 }
580
Tor Norbyebd65b232019-01-07 18:09:28 -0800581 @Deprecated public class QuotedPrintableCodec implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
582 ctor @Deprecated public QuotedPrintableCodec();
583 ctor @Deprecated public QuotedPrintableCodec(String);
584 method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
585 method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderException, java.io.UnsupportedEncodingException;
586 method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
587 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
588 method @Deprecated public static final byte[] decodeQuotedPrintable(byte[]) throws org.apache.commons.codec.DecoderException;
589 method @Deprecated public byte[] encode(byte[]);
590 method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
591 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
592 method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingException;
593 method @Deprecated public static final byte[] encodeQuotedPrintable(java.util.BitSet, byte[]);
594 method @Deprecated public String getDefaultCharset();
Paul Duffin03a95652017-07-14 13:48:42 +0100595 }
596
Tor Norbyebd65b232019-01-07 18:09:28 -0800597 @Deprecated public class URLCodec implements org.apache.commons.codec.BinaryDecoder org.apache.commons.codec.BinaryEncoder org.apache.commons.codec.StringDecoder org.apache.commons.codec.StringEncoder {
598 ctor @Deprecated public URLCodec();
599 ctor @Deprecated public URLCodec(String);
600 method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
601 method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderException, java.io.UnsupportedEncodingException;
602 method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
603 method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
604 method @Deprecated public static final byte[] decodeUrl(byte[]) throws org.apache.commons.codec.DecoderException;
605 method @Deprecated public byte[] encode(byte[]);
606 method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingException;
607 method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
608 method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
609 method @Deprecated public static final byte[] encodeUrl(java.util.BitSet, byte[]);
610 method @Deprecated public String getDefaultCharset();
611 method @Deprecated public String getEncoding();
612 field @Deprecated protected static byte ESCAPE_CHAR;
613 field @Deprecated protected static final java.util.BitSet WWW_FORM_URL;
614 field @Deprecated protected String charset;
Paul Duffin03a95652017-07-14 13:48:42 +0100615 }
616
617}
618
619package org.apache.commons.logging {
620
Tor Norbyebd65b232019-01-07 18:09:28 -0800621 @Deprecated public interface Log {
622 method @Deprecated public void debug(Object);
623 method @Deprecated public void debug(Object, Throwable);
624 method @Deprecated public void error(Object);
625 method @Deprecated public void error(Object, Throwable);
626 method @Deprecated public void fatal(Object);
627 method @Deprecated public void fatal(Object, Throwable);
628 method @Deprecated public void info(Object);
629 method @Deprecated public void info(Object, Throwable);
630 method @Deprecated public boolean isDebugEnabled();
631 method @Deprecated public boolean isErrorEnabled();
632 method @Deprecated public boolean isFatalEnabled();
633 method @Deprecated public boolean isInfoEnabled();
634 method @Deprecated public boolean isTraceEnabled();
635 method @Deprecated public boolean isWarnEnabled();
636 method @Deprecated public void trace(Object);
637 method @Deprecated public void trace(Object, Throwable);
638 method @Deprecated public void warn(Object);
639 method @Deprecated public void warn(Object, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +0100640 }
641
Tor Norbyebd65b232019-01-07 18:09:28 -0800642 @Deprecated public class LogConfigurationException extends java.lang.RuntimeException {
643 ctor @Deprecated public LogConfigurationException();
644 ctor @Deprecated public LogConfigurationException(String);
645 ctor @Deprecated public LogConfigurationException(Throwable);
646 ctor @Deprecated public LogConfigurationException(String, Throwable);
647 field @Deprecated protected Throwable cause;
Paul Duffin03a95652017-07-14 13:48:42 +0100648 }
649
Tor Norbyebd65b232019-01-07 18:09:28 -0800650 @Deprecated public abstract class LogFactory {
651 ctor @Deprecated protected LogFactory();
652 method @Deprecated protected static Object createFactory(String, ClassLoader);
653 method @Deprecated protected static ClassLoader directGetContextClassLoader() throws org.apache.commons.logging.LogConfigurationException;
654 method @Deprecated public abstract Object getAttribute(String);
655 method @Deprecated public abstract String[] getAttributeNames();
656 method @Deprecated protected static ClassLoader getClassLoader(Class);
657 method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.logging.LogConfigurationException;
658 method @Deprecated public static org.apache.commons.logging.LogFactory getFactory() throws org.apache.commons.logging.LogConfigurationException;
659 method @Deprecated public abstract org.apache.commons.logging.Log getInstance(Class) throws org.apache.commons.logging.LogConfigurationException;
660 method @Deprecated public abstract org.apache.commons.logging.Log getInstance(String) throws org.apache.commons.logging.LogConfigurationException;
661 method @Deprecated public static org.apache.commons.logging.Log getLog(Class) throws org.apache.commons.logging.LogConfigurationException;
662 method @Deprecated public static org.apache.commons.logging.Log getLog(String) throws org.apache.commons.logging.LogConfigurationException;
663 method @Deprecated protected static boolean isDiagnosticsEnabled();
664 method @Deprecated protected static final void logRawDiagnostic(String);
665 method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, ClassLoader, ClassLoader) throws org.apache.commons.logging.LogConfigurationException;
666 method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, ClassLoader);
667 method @Deprecated public static String objectId(Object);
668 method @Deprecated public abstract void release();
669 method @Deprecated public static void release(ClassLoader);
670 method @Deprecated public static void releaseAll();
671 method @Deprecated public abstract void removeAttribute(String);
672 method @Deprecated public abstract void setAttribute(String, Object);
673 field @Deprecated public static final String DIAGNOSTICS_DEST_PROPERTY = "org.apache.commons.logging.diagnostics.dest";
674 field @Deprecated public static final String FACTORY_DEFAULT = "org.apache.commons.logging.impl.LogFactoryImpl";
675 field @Deprecated public static final String FACTORY_PROPERTIES = "commons-logging.properties";
676 field @Deprecated public static final String FACTORY_PROPERTY = "org.apache.commons.logging.LogFactory";
677 field @Deprecated public static final String HASHTABLE_IMPLEMENTATION_PROPERTY = "org.apache.commons.logging.LogFactory.HashtableImpl";
678 field @Deprecated public static final String PRIORITY_KEY = "priority";
679 field @Deprecated protected static final String SERVICE_ID = "META-INF/services/org.apache.commons.logging.LogFactory";
680 field @Deprecated public static final String TCCL_KEY = "use_tccl";
681 field @Deprecated protected static java.util.Hashtable factories;
682 field @Deprecated protected static org.apache.commons.logging.LogFactory nullClassLoaderFactory;
Paul Duffin03a95652017-07-14 13:48:42 +0100683 }
684
Tor Norbyebd65b232019-01-07 18:09:28 -0800685 @Deprecated public class LogSource {
686 method @Deprecated public static org.apache.commons.logging.Log getInstance(String);
687 method @Deprecated public static org.apache.commons.logging.Log getInstance(Class);
688 method @Deprecated public static String[] getLogNames();
689 method @Deprecated public static org.apache.commons.logging.Log makeNewLogInstance(String);
690 method @Deprecated public static void setLogImplementation(String) throws java.lang.ClassNotFoundException, java.lang.ExceptionInInitializerError, java.lang.LinkageError, java.lang.NoSuchMethodException, java.lang.SecurityException;
691 method @Deprecated public static void setLogImplementation(Class) throws java.lang.ExceptionInInitializerError, java.lang.LinkageError, java.lang.NoSuchMethodException, java.lang.SecurityException;
692 field @Deprecated protected static boolean jdk14IsAvailable;
693 field @Deprecated protected static boolean log4jIsAvailable;
694 field @Deprecated protected static java.lang.reflect.Constructor logImplctor;
695 field @Deprecated protected static java.util.Hashtable logs;
Paul Duffin03a95652017-07-14 13:48:42 +0100696 }
697
698}
699
700package org.apache.commons.logging.impl {
701
Tor Norbyebd65b232019-01-07 18:09:28 -0800702 @Deprecated public class Jdk14Logger implements org.apache.commons.logging.Log java.io.Serializable {
703 ctor @Deprecated public Jdk14Logger(String);
704 method @Deprecated public void debug(Object);
705 method @Deprecated public void debug(Object, Throwable);
706 method @Deprecated public void error(Object);
707 method @Deprecated public void error(Object, Throwable);
708 method @Deprecated public void fatal(Object);
709 method @Deprecated public void fatal(Object, Throwable);
710 method @Deprecated public java.util.logging.Logger getLogger();
711 method @Deprecated public void info(Object);
712 method @Deprecated public void info(Object, Throwable);
713 method @Deprecated public boolean isDebugEnabled();
714 method @Deprecated public boolean isErrorEnabled();
715 method @Deprecated public boolean isFatalEnabled();
716 method @Deprecated public boolean isInfoEnabled();
717 method @Deprecated public boolean isTraceEnabled();
718 method @Deprecated public boolean isWarnEnabled();
719 method @Deprecated public void trace(Object);
720 method @Deprecated public void trace(Object, Throwable);
721 method @Deprecated public void warn(Object);
722 method @Deprecated public void warn(Object, Throwable);
723 field @Deprecated protected static final java.util.logging.Level dummyLevel;
724 field @Deprecated protected transient java.util.logging.Logger logger;
725 field @Deprecated protected String name;
Paul Duffin03a95652017-07-14 13:48:42 +0100726 }
727
Tor Norbyebd65b232019-01-07 18:09:28 -0800728 @Deprecated public class LogFactoryImpl extends org.apache.commons.logging.LogFactory {
729 ctor @Deprecated public LogFactoryImpl();
730 method @Deprecated public Object getAttribute(String);
731 method @Deprecated public String[] getAttributeNames();
732 method @Deprecated protected static ClassLoader getClassLoader(Class);
733 method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.logging.LogConfigurationException;
734 method @Deprecated public org.apache.commons.logging.Log getInstance(Class) throws org.apache.commons.logging.LogConfigurationException;
735 method @Deprecated public org.apache.commons.logging.Log getInstance(String) throws org.apache.commons.logging.LogConfigurationException;
736 method @Deprecated protected String getLogClassName();
737 method @Deprecated protected java.lang.reflect.Constructor getLogConstructor() throws org.apache.commons.logging.LogConfigurationException;
738 method @Deprecated protected static boolean isDiagnosticsEnabled();
739 method @Deprecated protected boolean isJdk13LumberjackAvailable();
740 method @Deprecated protected boolean isJdk14Available();
741 method @Deprecated protected boolean isLog4JAvailable();
742 method @Deprecated protected void logDiagnostic(String);
743 method @Deprecated protected org.apache.commons.logging.Log newInstance(String) throws org.apache.commons.logging.LogConfigurationException;
744 method @Deprecated public void release();
745 method @Deprecated public void removeAttribute(String);
746 method @Deprecated public void setAttribute(String, Object);
747 field @Deprecated public static final String ALLOW_FLAWED_CONTEXT_PROPERTY = "org.apache.commons.logging.Log.allowFlawedContext";
748 field @Deprecated public static final String ALLOW_FLAWED_DISCOVERY_PROPERTY = "org.apache.commons.logging.Log.allowFlawedDiscovery";
749 field @Deprecated public static final String ALLOW_FLAWED_HIERARCHY_PROPERTY = "org.apache.commons.logging.Log.allowFlawedHierarchy";
750 field @Deprecated public static final String LOG_PROPERTY = "org.apache.commons.logging.Log";
751 field @Deprecated protected static final String LOG_PROPERTY_OLD = "org.apache.commons.logging.log";
752 field @Deprecated protected java.util.Hashtable attributes;
753 field @Deprecated protected java.util.Hashtable instances;
754 field @Deprecated protected java.lang.reflect.Constructor logConstructor;
755 field @Deprecated protected Class[] logConstructorSignature;
756 field @Deprecated protected java.lang.reflect.Method logMethod;
757 field @Deprecated protected Class[] logMethodSignature;
Paul Duffin03a95652017-07-14 13:48:42 +0100758 }
759
Tor Norbyebd65b232019-01-07 18:09:28 -0800760 @Deprecated public class NoOpLog implements org.apache.commons.logging.Log java.io.Serializable {
761 ctor @Deprecated public NoOpLog();
762 ctor @Deprecated public NoOpLog(String);
763 method @Deprecated public void debug(Object);
764 method @Deprecated public void debug(Object, Throwable);
765 method @Deprecated public void error(Object);
766 method @Deprecated public void error(Object, Throwable);
767 method @Deprecated public void fatal(Object);
768 method @Deprecated public void fatal(Object, Throwable);
769 method @Deprecated public void info(Object);
770 method @Deprecated public void info(Object, Throwable);
771 method @Deprecated public final boolean isDebugEnabled();
772 method @Deprecated public final boolean isErrorEnabled();
773 method @Deprecated public final boolean isFatalEnabled();
774 method @Deprecated public final boolean isInfoEnabled();
775 method @Deprecated public final boolean isTraceEnabled();
776 method @Deprecated public final boolean isWarnEnabled();
777 method @Deprecated public void trace(Object);
778 method @Deprecated public void trace(Object, Throwable);
779 method @Deprecated public void warn(Object);
780 method @Deprecated public void warn(Object, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +0100781 }
782
Tor Norbyebd65b232019-01-07 18:09:28 -0800783 @Deprecated public class SimpleLog implements org.apache.commons.logging.Log java.io.Serializable {
784 ctor @Deprecated public SimpleLog(String);
785 method @Deprecated public final void debug(Object);
786 method @Deprecated public final void debug(Object, Throwable);
787 method @Deprecated public final void error(Object);
788 method @Deprecated public final void error(Object, Throwable);
789 method @Deprecated public final void fatal(Object);
790 method @Deprecated public final void fatal(Object, Throwable);
791 method @Deprecated public int getLevel();
792 method @Deprecated public final void info(Object);
793 method @Deprecated public final void info(Object, Throwable);
794 method @Deprecated public final boolean isDebugEnabled();
795 method @Deprecated public final boolean isErrorEnabled();
796 method @Deprecated public final boolean isFatalEnabled();
797 method @Deprecated public final boolean isInfoEnabled();
798 method @Deprecated protected boolean isLevelEnabled(int);
799 method @Deprecated public final boolean isTraceEnabled();
800 method @Deprecated public final boolean isWarnEnabled();
801 method @Deprecated protected void log(int, Object, Throwable);
802 method @Deprecated public void setLevel(int);
803 method @Deprecated public final void trace(Object);
804 method @Deprecated public final void trace(Object, Throwable);
805 method @Deprecated public final void warn(Object);
806 method @Deprecated public final void warn(Object, Throwable);
807 method @Deprecated protected void write(StringBuffer);
808 field @Deprecated protected static final String DEFAULT_DATE_TIME_FORMAT = "yyyy/MM/dd HH:mm:ss:SSS zzz";
809 field @Deprecated public static final int LOG_LEVEL_ALL = 0; // 0x0
810 field @Deprecated public static final int LOG_LEVEL_DEBUG = 2; // 0x2
811 field @Deprecated public static final int LOG_LEVEL_ERROR = 5; // 0x5
812 field @Deprecated public static final int LOG_LEVEL_FATAL = 6; // 0x6
813 field @Deprecated public static final int LOG_LEVEL_INFO = 3; // 0x3
814 field @Deprecated public static final int LOG_LEVEL_OFF = 7; // 0x7
815 field @Deprecated public static final int LOG_LEVEL_TRACE = 1; // 0x1
816 field @Deprecated public static final int LOG_LEVEL_WARN = 4; // 0x4
817 field @Deprecated protected int currentLogLevel;
818 field @Deprecated protected static java.text.DateFormat dateFormatter;
819 field @Deprecated protected static String dateTimeFormat;
820 field @Deprecated protected String logName;
821 field @Deprecated protected static boolean showDateTime;
822 field @Deprecated protected static boolean showLogName;
823 field @Deprecated protected static boolean showShortName;
824 field @Deprecated protected static final java.util.Properties simpleLogProps;
825 field @Deprecated protected static final String systemPrefix = "org.apache.commons.logging.simplelog.";
Paul Duffin03a95652017-07-14 13:48:42 +0100826 }
827
Tor Norbyebd65b232019-01-07 18:09:28 -0800828 @Deprecated public final class WeakHashtable extends java.util.Hashtable {
829 ctor @Deprecated public WeakHashtable();
830 method @Deprecated public java.util.Enumeration elements();
831 method @Deprecated public java.util.Set entrySet();
832 method @Deprecated public Object get(Object);
833 method @Deprecated public java.util.Set keySet();
834 method @Deprecated public java.util.Enumeration keys();
835 method @Deprecated public Object put(Object, Object);
836 method @Deprecated public void putAll(java.util.Map);
837 method @Deprecated public Object remove(Object);
838 method @Deprecated public java.util.Collection values();
Paul Duffin03a95652017-07-14 13:48:42 +0100839 }
840
841}
842
843package org.apache.http {
844
Tor Norbyebd65b232019-01-07 18:09:28 -0800845 @Deprecated public class ConnectionClosedException extends java.io.IOException {
846 ctor @Deprecated public ConnectionClosedException(String);
Paul Duffin03a95652017-07-14 13:48:42 +0100847 }
848
Tor Norbyebd65b232019-01-07 18:09:28 -0800849 @Deprecated public interface ConnectionReuseStrategy {
850 method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +0100851 }
852
Tor Norbyebd65b232019-01-07 18:09:28 -0800853 @Deprecated public interface FormattedHeader extends org.apache.http.Header {
854 method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
855 method @Deprecated public int getValuePos();
Paul Duffin03a95652017-07-14 13:48:42 +0100856 }
857
Tor Norbyebd65b232019-01-07 18:09:28 -0800858 @Deprecated public interface Header {
859 method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
860 method @Deprecated public String getName();
861 method @Deprecated public String getValue();
Paul Duffin03a95652017-07-14 13:48:42 +0100862 }
863
Tor Norbyebd65b232019-01-07 18:09:28 -0800864 @Deprecated public interface HeaderElement {
865 method @Deprecated public String getName();
866 method @Deprecated public org.apache.http.NameValuePair getParameter(int);
867 method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
868 method @Deprecated public int getParameterCount();
869 method @Deprecated public org.apache.http.NameValuePair[] getParameters();
870 method @Deprecated public String getValue();
Paul Duffin03a95652017-07-14 13:48:42 +0100871 }
872
Tor Norbyebd65b232019-01-07 18:09:28 -0800873 @Deprecated public interface HeaderElementIterator extends java.util.Iterator {
874 method @Deprecated public org.apache.http.HeaderElement nextElement();
Paul Duffin03a95652017-07-14 13:48:42 +0100875 }
876
Tor Norbyebd65b232019-01-07 18:09:28 -0800877 @Deprecated public interface HeaderIterator extends java.util.Iterator {
878 method @Deprecated public org.apache.http.Header nextHeader();
Paul Duffin03a95652017-07-14 13:48:42 +0100879 }
880
Tor Norbyebd65b232019-01-07 18:09:28 -0800881 @Deprecated public interface HttpClientConnection extends org.apache.http.HttpConnection {
882 method @Deprecated public void flush() throws java.io.IOException;
883 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
884 method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
885 method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
886 method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
887 method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +0100888 }
889
Tor Norbyebd65b232019-01-07 18:09:28 -0800890 @Deprecated public interface HttpConnection {
891 method @Deprecated public void close() throws java.io.IOException;
892 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
893 method @Deprecated public int getSocketTimeout();
894 method @Deprecated public boolean isOpen();
895 method @Deprecated public boolean isStale();
896 method @Deprecated public void setSocketTimeout(int);
897 method @Deprecated public void shutdown() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +0100898 }
899
Tor Norbyebd65b232019-01-07 18:09:28 -0800900 @Deprecated public interface HttpConnectionMetrics {
901 method @Deprecated public Object getMetric(String);
902 method @Deprecated public long getReceivedBytesCount();
903 method @Deprecated public long getRequestCount();
904 method @Deprecated public long getResponseCount();
905 method @Deprecated public long getSentBytesCount();
906 method @Deprecated public void reset();
Paul Duffin03a95652017-07-14 13:48:42 +0100907 }
908
Tor Norbyebd65b232019-01-07 18:09:28 -0800909 @Deprecated public interface HttpEntity {
910 method @Deprecated public void consumeContent() throws java.io.IOException;
911 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
912 method @Deprecated public org.apache.http.Header getContentEncoding();
913 method @Deprecated public long getContentLength();
914 method @Deprecated public org.apache.http.Header getContentType();
915 method @Deprecated public boolean isChunked();
916 method @Deprecated public boolean isRepeatable();
917 method @Deprecated public boolean isStreaming();
918 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +0100919 }
920
Tor Norbyebd65b232019-01-07 18:09:28 -0800921 @Deprecated public interface HttpEntityEnclosingRequest extends org.apache.http.HttpRequest {
922 method @Deprecated public boolean expectContinue();
923 method @Deprecated public org.apache.http.HttpEntity getEntity();
924 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
Paul Duffin03a95652017-07-14 13:48:42 +0100925 }
926
Tor Norbyebd65b232019-01-07 18:09:28 -0800927 @Deprecated public class HttpException extends java.lang.Exception {
928 ctor @Deprecated public HttpException();
929 ctor @Deprecated public HttpException(String);
930 ctor @Deprecated public HttpException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +0100931 }
932
Tor Norbyebd65b232019-01-07 18:09:28 -0800933 @Deprecated public final class HttpHost implements java.lang.Cloneable {
934 ctor @Deprecated public HttpHost(String, int, String);
935 ctor @Deprecated public HttpHost(String, int);
936 ctor @Deprecated public HttpHost(String);
937 ctor @Deprecated public HttpHost(org.apache.http.HttpHost);
938 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
939 method @Deprecated public String getHostName();
940 method @Deprecated public int getPort();
941 method @Deprecated public String getSchemeName();
942 method @Deprecated public String toHostString();
943 method @Deprecated public String toURI();
944 field @Deprecated public static final String DEFAULT_SCHEME_NAME = "http";
945 field @Deprecated protected final String hostname;
946 field @Deprecated protected final String lcHostname;
947 field @Deprecated protected final int port;
948 field @Deprecated protected final String schemeName;
Paul Duffin03a95652017-07-14 13:48:42 +0100949 }
950
Tor Norbyebd65b232019-01-07 18:09:28 -0800951 @Deprecated public interface HttpInetConnection extends org.apache.http.HttpConnection {
952 method @Deprecated public java.net.InetAddress getLocalAddress();
953 method @Deprecated public int getLocalPort();
954 method @Deprecated public java.net.InetAddress getRemoteAddress();
955 method @Deprecated public int getRemotePort();
Paul Duffin03a95652017-07-14 13:48:42 +0100956 }
957
Tor Norbyebd65b232019-01-07 18:09:28 -0800958 @Deprecated public interface HttpMessage {
959 method @Deprecated public void addHeader(org.apache.http.Header);
960 method @Deprecated public void addHeader(String, String);
961 method @Deprecated public boolean containsHeader(String);
962 method @Deprecated public org.apache.http.Header[] getAllHeaders();
963 method @Deprecated public org.apache.http.Header getFirstHeader(String);
964 method @Deprecated public org.apache.http.Header[] getHeaders(String);
965 method @Deprecated public org.apache.http.Header getLastHeader(String);
966 method @Deprecated public org.apache.http.params.HttpParams getParams();
967 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
968 method @Deprecated public org.apache.http.HeaderIterator headerIterator();
969 method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
970 method @Deprecated public void removeHeader(org.apache.http.Header);
971 method @Deprecated public void removeHeaders(String);
972 method @Deprecated public void setHeader(org.apache.http.Header);
973 method @Deprecated public void setHeader(String, String);
974 method @Deprecated public void setHeaders(org.apache.http.Header[]);
975 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +0100976 }
977
Tor Norbyebd65b232019-01-07 18:09:28 -0800978 @Deprecated public interface HttpRequest extends org.apache.http.HttpMessage {
979 method @Deprecated public org.apache.http.RequestLine getRequestLine();
Paul Duffin03a95652017-07-14 13:48:42 +0100980 }
981
Tor Norbyebd65b232019-01-07 18:09:28 -0800982 @Deprecated public interface HttpRequestFactory {
983 method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) throws org.apache.http.MethodNotSupportedException;
984 method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.apache.http.MethodNotSupportedException;
Paul Duffin03a95652017-07-14 13:48:42 +0100985 }
986
Tor Norbyebd65b232019-01-07 18:09:28 -0800987 @Deprecated public interface HttpRequestInterceptor {
988 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +0100989 }
990
Tor Norbyebd65b232019-01-07 18:09:28 -0800991 @Deprecated public interface HttpResponse extends org.apache.http.HttpMessage {
992 method @Deprecated public org.apache.http.HttpEntity getEntity();
993 method @Deprecated public java.util.Locale getLocale();
994 method @Deprecated public org.apache.http.StatusLine getStatusLine();
995 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
996 method @Deprecated public void setLocale(java.util.Locale);
997 method @Deprecated public void setReasonPhrase(String) throws java.lang.IllegalStateException;
998 method @Deprecated public void setStatusCode(int) throws java.lang.IllegalStateException;
999 method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
1000 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
1001 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
Paul Duffin03a95652017-07-14 13:48:42 +01001002 }
1003
Tor Norbyebd65b232019-01-07 18:09:28 -08001004 @Deprecated public interface HttpResponseFactory {
1005 method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVersion, int, org.apache.http.protocol.HttpContext);
1006 method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01001007 }
1008
Tor Norbyebd65b232019-01-07 18:09:28 -08001009 @Deprecated public interface HttpResponseInterceptor {
1010 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001011 }
1012
Tor Norbyebd65b232019-01-07 18:09:28 -08001013 @Deprecated public interface HttpServerConnection extends org.apache.http.HttpConnection {
1014 method @Deprecated public void flush() throws java.io.IOException;
1015 method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
1016 method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.http.HttpException, java.io.IOException;
1017 method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
1018 method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001019 }
1020
Tor Norbyebd65b232019-01-07 18:09:28 -08001021 @Deprecated public interface HttpStatus {
1022 field @Deprecated public static final int SC_ACCEPTED = 202; // 0xca
1023 field @Deprecated public static final int SC_BAD_GATEWAY = 502; // 0x1f6
1024 field @Deprecated public static final int SC_BAD_REQUEST = 400; // 0x190
1025 field @Deprecated public static final int SC_CONFLICT = 409; // 0x199
1026 field @Deprecated public static final int SC_CONTINUE = 100; // 0x64
1027 field @Deprecated public static final int SC_CREATED = 201; // 0xc9
1028 field @Deprecated public static final int SC_EXPECTATION_FAILED = 417; // 0x1a1
1029 field @Deprecated public static final int SC_FAILED_DEPENDENCY = 424; // 0x1a8
1030 field @Deprecated public static final int SC_FORBIDDEN = 403; // 0x193
1031 field @Deprecated public static final int SC_GATEWAY_TIMEOUT = 504; // 0x1f8
1032 field @Deprecated public static final int SC_GONE = 410; // 0x19a
1033 field @Deprecated public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505; // 0x1f9
1034 field @Deprecated public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419; // 0x1a3
1035 field @Deprecated public static final int SC_INSUFFICIENT_STORAGE = 507; // 0x1fb
1036 field @Deprecated public static final int SC_INTERNAL_SERVER_ERROR = 500; // 0x1f4
1037 field @Deprecated public static final int SC_LENGTH_REQUIRED = 411; // 0x19b
1038 field @Deprecated public static final int SC_LOCKED = 423; // 0x1a7
1039 field @Deprecated public static final int SC_METHOD_FAILURE = 420; // 0x1a4
1040 field @Deprecated public static final int SC_METHOD_NOT_ALLOWED = 405; // 0x195
1041 field @Deprecated public static final int SC_MOVED_PERMANENTLY = 301; // 0x12d
1042 field @Deprecated public static final int SC_MOVED_TEMPORARILY = 302; // 0x12e
1043 field @Deprecated public static final int SC_MULTIPLE_CHOICES = 300; // 0x12c
1044 field @Deprecated public static final int SC_MULTI_STATUS = 207; // 0xcf
1045 field @Deprecated public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203; // 0xcb
1046 field @Deprecated public static final int SC_NOT_ACCEPTABLE = 406; // 0x196
1047 field @Deprecated public static final int SC_NOT_FOUND = 404; // 0x194
1048 field @Deprecated public static final int SC_NOT_IMPLEMENTED = 501; // 0x1f5
1049 field @Deprecated public static final int SC_NOT_MODIFIED = 304; // 0x130
1050 field @Deprecated public static final int SC_NO_CONTENT = 204; // 0xcc
1051 field @Deprecated public static final int SC_OK = 200; // 0xc8
1052 field @Deprecated public static final int SC_PARTIAL_CONTENT = 206; // 0xce
1053 field @Deprecated public static final int SC_PAYMENT_REQUIRED = 402; // 0x192
1054 field @Deprecated public static final int SC_PRECONDITION_FAILED = 412; // 0x19c
1055 field @Deprecated public static final int SC_PROCESSING = 102; // 0x66
1056 field @Deprecated public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407; // 0x197
1057 field @Deprecated public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416; // 0x1a0
1058 field @Deprecated public static final int SC_REQUEST_TIMEOUT = 408; // 0x198
1059 field @Deprecated public static final int SC_REQUEST_TOO_LONG = 413; // 0x19d
1060 field @Deprecated public static final int SC_REQUEST_URI_TOO_LONG = 414; // 0x19e
1061 field @Deprecated public static final int SC_RESET_CONTENT = 205; // 0xcd
1062 field @Deprecated public static final int SC_SEE_OTHER = 303; // 0x12f
1063 field @Deprecated public static final int SC_SERVICE_UNAVAILABLE = 503; // 0x1f7
1064 field @Deprecated public static final int SC_SWITCHING_PROTOCOLS = 101; // 0x65
1065 field @Deprecated public static final int SC_TEMPORARY_REDIRECT = 307; // 0x133
1066 field @Deprecated public static final int SC_UNAUTHORIZED = 401; // 0x191
1067 field @Deprecated public static final int SC_UNPROCESSABLE_ENTITY = 422; // 0x1a6
1068 field @Deprecated public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415; // 0x19f
1069 field @Deprecated public static final int SC_USE_PROXY = 305; // 0x131
Paul Duffin03a95652017-07-14 13:48:42 +01001070 }
1071
Tor Norbyebd65b232019-01-07 18:09:28 -08001072 @Deprecated public final class HttpVersion extends org.apache.http.ProtocolVersion implements java.io.Serializable {
1073 ctor @Deprecated public HttpVersion(int, int);
1074 field @Deprecated public static final String HTTP = "HTTP";
1075 field @Deprecated public static final org.apache.http.HttpVersion HTTP_0_9;
1076 field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_0;
1077 field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_1;
Paul Duffin03a95652017-07-14 13:48:42 +01001078 }
1079
Tor Norbyebd65b232019-01-07 18:09:28 -08001080 @Deprecated public class MalformedChunkCodingException extends java.io.IOException {
1081 ctor @Deprecated public MalformedChunkCodingException();
1082 ctor @Deprecated public MalformedChunkCodingException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001083 }
1084
Tor Norbyebd65b232019-01-07 18:09:28 -08001085 @Deprecated public class MethodNotSupportedException extends org.apache.http.HttpException {
1086 ctor @Deprecated public MethodNotSupportedException(String);
1087 ctor @Deprecated public MethodNotSupportedException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001088 }
1089
Tor Norbyebd65b232019-01-07 18:09:28 -08001090 @Deprecated public interface NameValuePair {
1091 method @Deprecated public String getName();
1092 method @Deprecated public String getValue();
Paul Duffin03a95652017-07-14 13:48:42 +01001093 }
1094
Tor Norbyebd65b232019-01-07 18:09:28 -08001095 @Deprecated public class NoHttpResponseException extends java.io.IOException {
1096 ctor @Deprecated public NoHttpResponseException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001097 }
1098
Tor Norbyebd65b232019-01-07 18:09:28 -08001099 @Deprecated public class ParseException extends java.lang.RuntimeException {
1100 ctor @Deprecated public ParseException();
1101 ctor @Deprecated public ParseException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001102 }
1103
Tor Norbyebd65b232019-01-07 18:09:28 -08001104 @Deprecated public class ProtocolException extends org.apache.http.HttpException {
1105 ctor @Deprecated public ProtocolException();
1106 ctor @Deprecated public ProtocolException(String);
1107 ctor @Deprecated public ProtocolException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001108 }
1109
Tor Norbyebd65b232019-01-07 18:09:28 -08001110 @Deprecated public class ProtocolVersion implements java.lang.Cloneable java.io.Serializable {
1111 ctor @Deprecated public ProtocolVersion(String, int, int);
1112 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1113 method @Deprecated public int compareToVersion(org.apache.http.ProtocolVersion);
1114 method @Deprecated public final boolean equals(Object);
1115 method @Deprecated public org.apache.http.ProtocolVersion forVersion(int, int);
1116 method @Deprecated public final int getMajor();
1117 method @Deprecated public final int getMinor();
1118 method @Deprecated public final String getProtocol();
1119 method @Deprecated public final boolean greaterEquals(org.apache.http.ProtocolVersion);
1120 method @Deprecated public final int hashCode();
1121 method @Deprecated public boolean isComparable(org.apache.http.ProtocolVersion);
1122 method @Deprecated public final boolean lessEquals(org.apache.http.ProtocolVersion);
1123 field @Deprecated protected final int major;
1124 field @Deprecated protected final int minor;
1125 field @Deprecated protected final String protocol;
Paul Duffin03a95652017-07-14 13:48:42 +01001126 }
1127
Tor Norbyebd65b232019-01-07 18:09:28 -08001128 @Deprecated public interface ReasonPhraseCatalog {
1129 method @Deprecated public String getReason(int, java.util.Locale);
Paul Duffin03a95652017-07-14 13:48:42 +01001130 }
1131
Tor Norbyebd65b232019-01-07 18:09:28 -08001132 @Deprecated public interface RequestLine {
1133 method @Deprecated public String getMethod();
1134 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1135 method @Deprecated public String getUri();
Paul Duffin03a95652017-07-14 13:48:42 +01001136 }
1137
Tor Norbyebd65b232019-01-07 18:09:28 -08001138 @Deprecated public interface StatusLine {
1139 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1140 method @Deprecated public String getReasonPhrase();
1141 method @Deprecated public int getStatusCode();
Paul Duffin03a95652017-07-14 13:48:42 +01001142 }
1143
Tor Norbyebd65b232019-01-07 18:09:28 -08001144 @Deprecated public interface TokenIterator extends java.util.Iterator {
1145 method @Deprecated public String nextToken();
Paul Duffin03a95652017-07-14 13:48:42 +01001146 }
1147
Tor Norbyebd65b232019-01-07 18:09:28 -08001148 @Deprecated public class UnsupportedHttpVersionException extends org.apache.http.ProtocolException {
1149 ctor @Deprecated public UnsupportedHttpVersionException();
1150 ctor @Deprecated public UnsupportedHttpVersionException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001151 }
1152
1153}
1154
1155package org.apache.http.auth {
1156
Tor Norbyebd65b232019-01-07 18:09:28 -08001157 @Deprecated public final class AUTH {
1158 field @Deprecated public static final String PROXY_AUTH = "Proxy-Authenticate";
1159 field @Deprecated public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
1160 field @Deprecated public static final String WWW_AUTH = "WWW-Authenticate";
1161 field @Deprecated public static final String WWW_AUTH_RESP = "Authorization";
Paul Duffin03a95652017-07-14 13:48:42 +01001162 }
1163
Tor Norbyebd65b232019-01-07 18:09:28 -08001164 @Deprecated public interface AuthScheme {
1165 method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
1166 method @Deprecated public String getParameter(String);
1167 method @Deprecated public String getRealm();
1168 method @Deprecated public String getSchemeName();
1169 method @Deprecated public boolean isComplete();
1170 method @Deprecated public boolean isConnectionBased();
1171 method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.auth.MalformedChallengeException;
Paul Duffin03a95652017-07-14 13:48:42 +01001172 }
1173
Tor Norbyebd65b232019-01-07 18:09:28 -08001174 @Deprecated public interface AuthSchemeFactory {
1175 method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01001176 }
1177
Tor Norbyebd65b232019-01-07 18:09:28 -08001178 @Deprecated public final class AuthSchemeRegistry {
1179 ctor @Deprecated public AuthSchemeRegistry();
1180 method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme(String, org.apache.http.params.HttpParams) throws java.lang.IllegalStateException;
1181 method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1182 method @Deprecated public void register(String, org.apache.http.auth.AuthSchemeFactory);
1183 method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.auth.AuthSchemeFactory>);
1184 method @Deprecated public void unregister(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001185 }
1186
Tor Norbyebd65b232019-01-07 18:09:28 -08001187 @Deprecated public class AuthScope {
1188 ctor @Deprecated public AuthScope(String, int, String, String);
1189 ctor @Deprecated public AuthScope(String, int, String);
1190 ctor @Deprecated public AuthScope(String, int);
1191 ctor @Deprecated public AuthScope(org.apache.http.auth.AuthScope);
1192 method @Deprecated public String getHost();
1193 method @Deprecated public int getPort();
1194 method @Deprecated public String getRealm();
1195 method @Deprecated public String getScheme();
1196 method @Deprecated public int match(org.apache.http.auth.AuthScope);
1197 field @Deprecated public static final org.apache.http.auth.AuthScope ANY;
1198 field @Deprecated public static final String ANY_HOST;
1199 field @Deprecated public static final int ANY_PORT = -1; // 0xffffffff
1200 field @Deprecated public static final String ANY_REALM;
1201 field @Deprecated public static final String ANY_SCHEME;
Paul Duffin03a95652017-07-14 13:48:42 +01001202 }
1203
Tor Norbyebd65b232019-01-07 18:09:28 -08001204 @Deprecated public class AuthState {
1205 ctor @Deprecated public AuthState();
1206 method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme();
1207 method @Deprecated public org.apache.http.auth.AuthScope getAuthScope();
1208 method @Deprecated public org.apache.http.auth.Credentials getCredentials();
1209 method @Deprecated public void invalidate();
1210 method @Deprecated public boolean isValid();
1211 method @Deprecated public void setAuthScheme(org.apache.http.auth.AuthScheme);
1212 method @Deprecated public void setAuthScope(org.apache.http.auth.AuthScope);
1213 method @Deprecated public void setCredentials(org.apache.http.auth.Credentials);
Paul Duffin03a95652017-07-14 13:48:42 +01001214 }
1215
Tor Norbyebd65b232019-01-07 18:09:28 -08001216 @Deprecated public class AuthenticationException extends org.apache.http.ProtocolException {
1217 ctor @Deprecated public AuthenticationException();
1218 ctor @Deprecated public AuthenticationException(String);
1219 ctor @Deprecated public AuthenticationException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001220 }
1221
Tor Norbyebd65b232019-01-07 18:09:28 -08001222 @Deprecated public final class BasicUserPrincipal implements java.security.Principal {
1223 ctor @Deprecated public BasicUserPrincipal(String);
1224 method @Deprecated public String getName();
Paul Duffin03a95652017-07-14 13:48:42 +01001225 }
1226
Tor Norbyebd65b232019-01-07 18:09:28 -08001227 @Deprecated public interface Credentials {
1228 method @Deprecated public String getPassword();
1229 method @Deprecated public java.security.Principal getUserPrincipal();
Paul Duffin03a95652017-07-14 13:48:42 +01001230 }
1231
Tor Norbyebd65b232019-01-07 18:09:28 -08001232 @Deprecated public class InvalidCredentialsException extends org.apache.http.auth.AuthenticationException {
1233 ctor @Deprecated public InvalidCredentialsException();
1234 ctor @Deprecated public InvalidCredentialsException(String);
1235 ctor @Deprecated public InvalidCredentialsException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001236 }
1237
Tor Norbyebd65b232019-01-07 18:09:28 -08001238 @Deprecated public class MalformedChallengeException extends org.apache.http.ProtocolException {
1239 ctor @Deprecated public MalformedChallengeException();
1240 ctor @Deprecated public MalformedChallengeException(String);
1241 ctor @Deprecated public MalformedChallengeException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001242 }
1243
Tor Norbyebd65b232019-01-07 18:09:28 -08001244 @Deprecated public class NTCredentials implements org.apache.http.auth.Credentials {
1245 ctor @Deprecated public NTCredentials(String);
1246 ctor @Deprecated public NTCredentials(String, String, String, String);
1247 method @Deprecated public String getDomain();
1248 method @Deprecated public String getPassword();
1249 method @Deprecated public String getUserName();
1250 method @Deprecated public java.security.Principal getUserPrincipal();
1251 method @Deprecated public String getWorkstation();
Paul Duffin03a95652017-07-14 13:48:42 +01001252 }
1253
Tor Norbyebd65b232019-01-07 18:09:28 -08001254 @Deprecated public class NTUserPrincipal implements java.security.Principal {
1255 ctor @Deprecated public NTUserPrincipal(String, String);
1256 method @Deprecated public String getDomain();
1257 method @Deprecated public String getName();
1258 method @Deprecated public String getUsername();
Paul Duffin03a95652017-07-14 13:48:42 +01001259 }
1260
Tor Norbyebd65b232019-01-07 18:09:28 -08001261 @Deprecated public class UsernamePasswordCredentials implements org.apache.http.auth.Credentials {
1262 ctor @Deprecated public UsernamePasswordCredentials(String);
1263 ctor @Deprecated public UsernamePasswordCredentials(String, String);
1264 method @Deprecated public String getPassword();
1265 method @Deprecated public String getUserName();
1266 method @Deprecated public java.security.Principal getUserPrincipal();
Paul Duffin03a95652017-07-14 13:48:42 +01001267 }
1268
1269}
1270
1271package org.apache.http.auth.params {
1272
Tor Norbyebd65b232019-01-07 18:09:28 -08001273 @Deprecated public interface AuthPNames {
1274 field @Deprecated public static final String CREDENTIAL_CHARSET = "http.auth.credential-charset";
Paul Duffin03a95652017-07-14 13:48:42 +01001275 }
1276
Tor Norbyebd65b232019-01-07 18:09:28 -08001277 @Deprecated public class AuthParamBean extends org.apache.http.params.HttpAbstractParamBean {
1278 ctor @Deprecated public AuthParamBean(org.apache.http.params.HttpParams);
1279 method @Deprecated public void setCredentialCharset(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001280 }
1281
Tor Norbyebd65b232019-01-07 18:09:28 -08001282 @Deprecated public final class AuthParams {
1283 method @Deprecated public static String getCredentialCharset(org.apache.http.params.HttpParams);
1284 method @Deprecated public static void setCredentialCharset(org.apache.http.params.HttpParams, String);
Paul Duffin03a95652017-07-14 13:48:42 +01001285 }
1286
1287}
1288
1289package org.apache.http.client {
1290
Tor Norbyebd65b232019-01-07 18:09:28 -08001291 @Deprecated public interface AuthenticationHandler {
1292 method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.MalformedChallengeException;
1293 method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
1294 method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.String,org.apache.http.Header>, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.AuthenticationException;
Paul Duffin03a95652017-07-14 13:48:42 +01001295 }
1296
Tor Norbyebd65b232019-01-07 18:09:28 -08001297 @Deprecated public class CircularRedirectException extends org.apache.http.client.RedirectException {
1298 ctor @Deprecated public CircularRedirectException();
1299 ctor @Deprecated public CircularRedirectException(String);
1300 ctor @Deprecated public CircularRedirectException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001301 }
1302
Tor Norbyebd65b232019-01-07 18:09:28 -08001303 @Deprecated public class ClientProtocolException extends java.io.IOException {
1304 ctor @Deprecated public ClientProtocolException();
1305 ctor @Deprecated public ClientProtocolException(String);
1306 ctor @Deprecated public ClientProtocolException(Throwable);
1307 ctor @Deprecated public ClientProtocolException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001308 }
1309
Tor Norbyebd65b232019-01-07 18:09:28 -08001310 @Deprecated public interface CookieStore {
1311 method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
1312 method @Deprecated public void clear();
1313 method @Deprecated public boolean clearExpired(java.util.Date);
1314 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
Paul Duffin03a95652017-07-14 13:48:42 +01001315 }
1316
Tor Norbyebd65b232019-01-07 18:09:28 -08001317 @Deprecated public interface CredentialsProvider {
1318 method @Deprecated public void clear();
1319 method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope);
1320 method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth.Credentials);
Paul Duffin03a95652017-07-14 13:48:42 +01001321 }
1322
Tor Norbyebd65b232019-01-07 18:09:28 -08001323 @Deprecated public interface HttpClient {
1324 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1325 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1326 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1327 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1328 method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1329 method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1330 method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1331 method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1332 method @Deprecated public org.apache.http.conn.ClientConnectionManager getConnectionManager();
1333 method @Deprecated public org.apache.http.params.HttpParams getParams();
Paul Duffin03a95652017-07-14 13:48:42 +01001334 }
1335
Tor Norbyebd65b232019-01-07 18:09:28 -08001336 @Deprecated public interface HttpRequestRetryHandler {
1337 method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01001338 }
1339
Tor Norbyebd65b232019-01-07 18:09:28 -08001340 @Deprecated public class HttpResponseException extends org.apache.http.client.ClientProtocolException {
1341 ctor @Deprecated public HttpResponseException(int, String);
1342 method @Deprecated public int getStatusCode();
Paul Duffin03a95652017-07-14 13:48:42 +01001343 }
1344
Tor Norbyebd65b232019-01-07 18:09:28 -08001345 @Deprecated public class NonRepeatableRequestException extends org.apache.http.ProtocolException {
1346 ctor @Deprecated public NonRepeatableRequestException();
1347 ctor @Deprecated public NonRepeatableRequestException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001348 }
1349
Tor Norbyebd65b232019-01-07 18:09:28 -08001350 @Deprecated public class RedirectException extends org.apache.http.ProtocolException {
1351 ctor @Deprecated public RedirectException();
1352 ctor @Deprecated public RedirectException(String);
1353 ctor @Deprecated public RedirectException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01001354 }
1355
Tor Norbyebd65b232019-01-07 18:09:28 -08001356 @Deprecated public interface RedirectHandler {
1357 method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.ProtocolException;
1358 method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01001359 }
1360
Tor Norbyebd65b232019-01-07 18:09:28 -08001361 @Deprecated public interface RequestDirector {
1362 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001363 }
1364
Tor Norbyebd65b232019-01-07 18:09:28 -08001365 @Deprecated public interface ResponseHandler<T> {
1366 method @Deprecated public T handleResponse(org.apache.http.HttpResponse) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001367 }
1368
Tor Norbyebd65b232019-01-07 18:09:28 -08001369 @Deprecated public interface UserTokenHandler {
1370 method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01001371 }
1372
1373}
1374
1375package org.apache.http.client.entity {
1376
Tor Norbyebd65b232019-01-07 18:09:28 -08001377 @Deprecated public class UrlEncodedFormEntity extends org.apache.http.entity.StringEntity {
1378 ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePair>, String) throws java.io.UnsupportedEncodingException;
1379 ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePair>) throws java.io.UnsupportedEncodingException;
Paul Duffin03a95652017-07-14 13:48:42 +01001380 }
1381
1382}
1383
1384package org.apache.http.client.methods {
1385
Tor Norbyebd65b232019-01-07 18:09:28 -08001386 @Deprecated public interface AbortableHttpRequest {
1387 method @Deprecated public void abort();
1388 method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) throws java.io.IOException;
1389 method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001390 }
1391
Tor Norbyebd65b232019-01-07 18:09:28 -08001392 @Deprecated public class HttpDelete extends org.apache.http.client.methods.HttpRequestBase {
1393 ctor @Deprecated public HttpDelete();
1394 ctor @Deprecated public HttpDelete(java.net.URI);
1395 ctor @Deprecated public HttpDelete(String);
1396 method @Deprecated public String getMethod();
1397 field @Deprecated public static final String METHOD_NAME = "DELETE";
Paul Duffin03a95652017-07-14 13:48:42 +01001398 }
1399
Tor Norbyebd65b232019-01-07 18:09:28 -08001400 @Deprecated public abstract class HttpEntityEnclosingRequestBase extends org.apache.http.client.methods.HttpRequestBase implements org.apache.http.HttpEntityEnclosingRequest {
1401 ctor @Deprecated public HttpEntityEnclosingRequestBase();
1402 method @Deprecated public boolean expectContinue();
1403 method @Deprecated public org.apache.http.HttpEntity getEntity();
1404 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
Paul Duffin03a95652017-07-14 13:48:42 +01001405 }
1406
Tor Norbyebd65b232019-01-07 18:09:28 -08001407 @Deprecated public class HttpGet extends org.apache.http.client.methods.HttpRequestBase {
1408 ctor @Deprecated public HttpGet();
1409 ctor @Deprecated public HttpGet(java.net.URI);
1410 ctor @Deprecated public HttpGet(String);
1411 method @Deprecated public String getMethod();
1412 field @Deprecated public static final String METHOD_NAME = "GET";
Paul Duffin03a95652017-07-14 13:48:42 +01001413 }
1414
Tor Norbyebd65b232019-01-07 18:09:28 -08001415 @Deprecated public class HttpHead extends org.apache.http.client.methods.HttpRequestBase {
1416 ctor @Deprecated public HttpHead();
1417 ctor @Deprecated public HttpHead(java.net.URI);
1418 ctor @Deprecated public HttpHead(String);
1419 method @Deprecated public String getMethod();
1420 field @Deprecated public static final String METHOD_NAME = "HEAD";
Paul Duffin03a95652017-07-14 13:48:42 +01001421 }
1422
Tor Norbyebd65b232019-01-07 18:09:28 -08001423 @Deprecated public class HttpOptions extends org.apache.http.client.methods.HttpRequestBase {
1424 ctor @Deprecated public HttpOptions();
1425 ctor @Deprecated public HttpOptions(java.net.URI);
1426 ctor @Deprecated public HttpOptions(String);
1427 method @Deprecated public java.util.Set<java.lang.String> getAllowedMethods(org.apache.http.HttpResponse);
1428 method @Deprecated public String getMethod();
1429 field @Deprecated public static final String METHOD_NAME = "OPTIONS";
Paul Duffin03a95652017-07-14 13:48:42 +01001430 }
1431
Tor Norbyebd65b232019-01-07 18:09:28 -08001432 @Deprecated public class HttpPost extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase {
1433 ctor @Deprecated public HttpPost();
1434 ctor @Deprecated public HttpPost(java.net.URI);
1435 ctor @Deprecated public HttpPost(String);
1436 method @Deprecated public String getMethod();
1437 field @Deprecated public static final String METHOD_NAME = "POST";
Paul Duffin03a95652017-07-14 13:48:42 +01001438 }
1439
Tor Norbyebd65b232019-01-07 18:09:28 -08001440 @Deprecated public class HttpPut extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase {
1441 ctor @Deprecated public HttpPut();
1442 ctor @Deprecated public HttpPut(java.net.URI);
1443 ctor @Deprecated public HttpPut(String);
1444 method @Deprecated public String getMethod();
1445 field @Deprecated public static final String METHOD_NAME = "PUT";
Paul Duffin03a95652017-07-14 13:48:42 +01001446 }
1447
Tor Norbyebd65b232019-01-07 18:09:28 -08001448 @Deprecated public abstract class HttpRequestBase extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.client.methods.AbortableHttpRequest java.lang.Cloneable org.apache.http.client.methods.HttpUriRequest {
1449 ctor @Deprecated public HttpRequestBase();
1450 method @Deprecated public void abort();
1451 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1452 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1453 method @Deprecated public org.apache.http.RequestLine getRequestLine();
1454 method @Deprecated public java.net.URI getURI();
1455 method @Deprecated public boolean isAborted();
1456 method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) throws java.io.IOException;
1457 method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) throws java.io.IOException;
1458 method @Deprecated public void setURI(java.net.URI);
Paul Duffin03a95652017-07-14 13:48:42 +01001459 }
1460
Tor Norbyebd65b232019-01-07 18:09:28 -08001461 @Deprecated public class HttpTrace extends org.apache.http.client.methods.HttpRequestBase {
1462 ctor @Deprecated public HttpTrace();
1463 ctor @Deprecated public HttpTrace(java.net.URI);
1464 ctor @Deprecated public HttpTrace(String);
1465 method @Deprecated public String getMethod();
1466 field @Deprecated public static final String METHOD_NAME = "TRACE";
Paul Duffin03a95652017-07-14 13:48:42 +01001467 }
1468
Tor Norbyebd65b232019-01-07 18:09:28 -08001469 @Deprecated public interface HttpUriRequest extends org.apache.http.HttpRequest {
1470 method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
1471 method @Deprecated public String getMethod();
1472 method @Deprecated public java.net.URI getURI();
1473 method @Deprecated public boolean isAborted();
Paul Duffin03a95652017-07-14 13:48:42 +01001474 }
1475
1476}
1477
1478package org.apache.http.client.params {
1479
Tor Norbyebd65b232019-01-07 18:09:28 -08001480 @Deprecated public interface AllClientPNames extends org.apache.http.params.CoreConnectionPNames org.apache.http.auth.params.AuthPNames org.apache.http.client.params.ClientPNames org.apache.http.conn.params.ConnConnectionPNames org.apache.http.conn.params.ConnManagerPNames org.apache.http.conn.params.ConnRoutePNames org.apache.http.cookie.params.CookieSpecPNames org.apache.http.params.CoreProtocolPNames {
Paul Duffin03a95652017-07-14 13:48:42 +01001481 }
1482
Tor Norbyebd65b232019-01-07 18:09:28 -08001483 @Deprecated public final class AuthPolicy {
1484 field @Deprecated public static final String BASIC = "Basic";
1485 field @Deprecated public static final String DIGEST = "Digest";
1486 field @Deprecated public static final String NTLM = "NTLM";
Paul Duffin03a95652017-07-14 13:48:42 +01001487 }
1488
Tor Norbyebd65b232019-01-07 18:09:28 -08001489 @Deprecated public interface ClientPNames {
1490 field @Deprecated public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects";
1491 field @Deprecated public static final String CONNECTION_MANAGER_FACTORY = "http.connection-manager.factory-object";
1492 field @Deprecated public static final String CONNECTION_MANAGER_FACTORY_CLASS_NAME = "http.connection-manager.factory-class-name";
1493 field @Deprecated public static final String COOKIE_POLICY = "http.protocol.cookie-policy";
1494 field @Deprecated public static final String DEFAULT_HEADERS = "http.default-headers";
1495 field @Deprecated public static final String DEFAULT_HOST = "http.default-host";
1496 field @Deprecated public static final String HANDLE_AUTHENTICATION = "http.protocol.handle-authentication";
1497 field @Deprecated public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
1498 field @Deprecated public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
1499 field @Deprecated public static final String REJECT_RELATIVE_REDIRECT = "http.protocol.reject-relative-redirect";
1500 field @Deprecated public static final String VIRTUAL_HOST = "http.virtual-host";
Paul Duffin03a95652017-07-14 13:48:42 +01001501 }
1502
Tor Norbyebd65b232019-01-07 18:09:28 -08001503 @Deprecated public class ClientParamBean extends org.apache.http.params.HttpAbstractParamBean {
1504 ctor @Deprecated public ClientParamBean(org.apache.http.params.HttpParams);
1505 method @Deprecated public void setAllowCircularRedirects(boolean);
1506 method @Deprecated public void setConnectionManagerFactory(org.apache.http.conn.ClientConnectionManagerFactory);
1507 method @Deprecated public void setConnectionManagerFactoryClassName(String);
1508 method @Deprecated public void setCookiePolicy(String);
1509 method @Deprecated public void setDefaultHeaders(java.util.Collection<org.apache.http.Header>);
1510 method @Deprecated public void setDefaultHost(org.apache.http.HttpHost);
1511 method @Deprecated public void setHandleAuthentication(boolean);
1512 method @Deprecated public void setHandleRedirects(boolean);
1513 method @Deprecated public void setMaxRedirects(int);
1514 method @Deprecated public void setRejectRelativeRedirect(boolean);
1515 method @Deprecated public void setVirtualHost(org.apache.http.HttpHost);
Paul Duffin03a95652017-07-14 13:48:42 +01001516 }
1517
Tor Norbyebd65b232019-01-07 18:09:28 -08001518 @Deprecated public final class CookiePolicy {
1519 field @Deprecated public static final String BEST_MATCH = "best-match";
1520 field @Deprecated public static final String BROWSER_COMPATIBILITY = "compatibility";
1521 field @Deprecated public static final String NETSCAPE = "netscape";
1522 field @Deprecated public static final String RFC_2109 = "rfc2109";
1523 field @Deprecated public static final String RFC_2965 = "rfc2965";
Paul Duffin03a95652017-07-14 13:48:42 +01001524 }
1525
Tor Norbyebd65b232019-01-07 18:09:28 -08001526 @Deprecated public class HttpClientParams {
1527 method @Deprecated public static String getCookiePolicy(org.apache.http.params.HttpParams);
1528 method @Deprecated public static boolean isAuthenticating(org.apache.http.params.HttpParams);
1529 method @Deprecated public static boolean isRedirecting(org.apache.http.params.HttpParams);
1530 method @Deprecated public static void setAuthenticating(org.apache.http.params.HttpParams, boolean);
1531 method @Deprecated public static void setCookiePolicy(org.apache.http.params.HttpParams, String);
1532 method @Deprecated public static void setRedirecting(org.apache.http.params.HttpParams, boolean);
Paul Duffin03a95652017-07-14 13:48:42 +01001533 }
1534
1535}
1536
1537package org.apache.http.client.protocol {
1538
Tor Norbyebd65b232019-01-07 18:09:28 -08001539 @Deprecated public interface ClientContext {
1540 field @Deprecated public static final String AUTHSCHEME_REGISTRY = "http.authscheme-registry";
1541 field @Deprecated public static final String AUTH_SCHEME_PREF = "http.auth.scheme-pref";
1542 field @Deprecated public static final String COOKIESPEC_REGISTRY = "http.cookiespec-registry";
1543 field @Deprecated public static final String COOKIE_ORIGIN = "http.cookie-origin";
1544 field @Deprecated public static final String COOKIE_SPEC = "http.cookie-spec";
1545 field @Deprecated public static final String COOKIE_STORE = "http.cookie-store";
1546 field @Deprecated public static final String CREDS_PROVIDER = "http.auth.credentials-provider";
1547 field @Deprecated public static final String PROXY_AUTH_STATE = "http.auth.proxy-scope";
1548 field @Deprecated public static final String TARGET_AUTH_STATE = "http.auth.target-scope";
1549 field @Deprecated public static final String USER_TOKEN = "http.user-token";
Paul Duffin03a95652017-07-14 13:48:42 +01001550 }
1551
Tor Norbyebd65b232019-01-07 18:09:28 -08001552 @Deprecated public class ClientContextConfigurer implements org.apache.http.client.protocol.ClientContext {
1553 ctor @Deprecated public ClientContextConfigurer(org.apache.http.protocol.HttpContext);
1554 method @Deprecated public void setAuthSchemePref(java.util.List<java.lang.String>);
1555 method @Deprecated public void setAuthSchemeRegistry(org.apache.http.auth.AuthSchemeRegistry);
1556 method @Deprecated public void setCookieSpecRegistry(org.apache.http.cookie.CookieSpecRegistry);
1557 method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
1558 method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
Paul Duffin03a95652017-07-14 13:48:42 +01001559 }
1560
Tor Norbyebd65b232019-01-07 18:09:28 -08001561 @Deprecated public class RequestAddCookies implements org.apache.http.HttpRequestInterceptor {
1562 ctor @Deprecated public RequestAddCookies();
1563 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001564 }
1565
Tor Norbyebd65b232019-01-07 18:09:28 -08001566 @Deprecated public class RequestDefaultHeaders implements org.apache.http.HttpRequestInterceptor {
1567 ctor @Deprecated public RequestDefaultHeaders();
1568 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001569 }
1570
Tor Norbyebd65b232019-01-07 18:09:28 -08001571 @Deprecated public class RequestProxyAuthentication implements org.apache.http.HttpRequestInterceptor {
1572 ctor @Deprecated public RequestProxyAuthentication();
1573 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001574 }
1575
Tor Norbyebd65b232019-01-07 18:09:28 -08001576 @Deprecated public class RequestTargetAuthentication implements org.apache.http.HttpRequestInterceptor {
1577 ctor @Deprecated public RequestTargetAuthentication();
1578 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001579 }
1580
Tor Norbyebd65b232019-01-07 18:09:28 -08001581 @Deprecated public class ResponseProcessCookies implements org.apache.http.HttpResponseInterceptor {
1582 ctor @Deprecated public ResponseProcessCookies();
1583 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001584 }
1585
1586}
1587
1588package org.apache.http.client.utils {
1589
Tor Norbyebd65b232019-01-07 18:09:28 -08001590 @Deprecated public class CloneUtils {
1591 method @Deprecated public static Object clone(Object) throws java.lang.CloneNotSupportedException;
Paul Duffin03a95652017-07-14 13:48:42 +01001592 }
1593
Tor Norbyebd65b232019-01-07 18:09:28 -08001594 @Deprecated public class URIUtils {
1595 method @Deprecated public static java.net.URI createURI(String, String, int, String, String, String) throws java.net.URISyntaxException;
1596 method @Deprecated public static java.net.URI resolve(java.net.URI, String);
1597 method @Deprecated public static java.net.URI resolve(java.net.URI, java.net.URI);
1598 method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost, boolean) throws java.net.URISyntaxException;
1599 method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost) throws java.net.URISyntaxException;
Paul Duffin03a95652017-07-14 13:48:42 +01001600 }
1601
Tor Norbyebd65b232019-01-07 18:09:28 -08001602 @Deprecated public class URLEncodedUtils {
1603 ctor @Deprecated public URLEncodedUtils();
1604 method @Deprecated public static String format(java.util.List<? extends org.apache.http.NameValuePair>, String);
1605 method @Deprecated public static boolean isEncoded(org.apache.http.HttpEntity);
1606 method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(java.net.URI, String);
1607 method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(org.apache.http.HttpEntity) throws java.io.IOException;
1608 method @Deprecated public static void parse(java.util.List<org.apache.http.NameValuePair>, java.util.Scanner, String);
1609 field @Deprecated public static final String CONTENT_TYPE = "application/x-www-form-urlencoded";
Paul Duffin03a95652017-07-14 13:48:42 +01001610 }
1611
1612}
1613
1614package org.apache.http.conn {
1615
Tor Norbyebd65b232019-01-07 18:09:28 -08001616 @Deprecated public class BasicEofSensorWatcher implements org.apache.http.conn.EofSensorWatcher {
1617 ctor @Deprecated public BasicEofSensorWatcher(org.apache.http.conn.ManagedClientConnection, boolean);
1618 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1619 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1620 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1621 field @Deprecated protected boolean attemptReuse;
1622 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
Paul Duffin03a95652017-07-14 13:48:42 +01001623 }
1624
Tor Norbyebd65b232019-01-07 18:09:28 -08001625 @Deprecated public class BasicManagedEntity extends org.apache.http.entity.HttpEntityWrapper implements org.apache.http.conn.ConnectionReleaseTrigger org.apache.http.conn.EofSensorWatcher {
1626 ctor @Deprecated public BasicManagedEntity(org.apache.http.HttpEntity, org.apache.http.conn.ManagedClientConnection, boolean);
1627 method @Deprecated public void abortConnection() throws java.io.IOException;
1628 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1629 method @Deprecated public void releaseConnection() throws java.io.IOException;
1630 method @Deprecated protected void releaseManagedConnection() throws java.io.IOException;
1631 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1632 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1633 field @Deprecated protected final boolean attemptReuse;
1634 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
Paul Duffin03a95652017-07-14 13:48:42 +01001635 }
1636
Tor Norbyebd65b232019-01-07 18:09:28 -08001637 @Deprecated public interface ClientConnectionManager {
1638 method @Deprecated public void closeExpiredConnections();
1639 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
1640 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
1641 method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
1642 method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
1643 method @Deprecated public void shutdown();
Paul Duffin03a95652017-07-14 13:48:42 +01001644 }
1645
Tor Norbyebd65b232019-01-07 18:09:28 -08001646 @Deprecated public interface ClientConnectionManagerFactory {
1647 method @Deprecated public org.apache.http.conn.ClientConnectionManager newInstance(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
Paul Duffin03a95652017-07-14 13:48:42 +01001648 }
1649
Tor Norbyebd65b232019-01-07 18:09:28 -08001650 @Deprecated public interface ClientConnectionOperator {
1651 method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
1652 method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
1653 method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001654 }
1655
Tor Norbyebd65b232019-01-07 18:09:28 -08001656 @Deprecated public interface ClientConnectionRequest {
1657 method @Deprecated public void abortRequest();
1658 method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
Paul Duffin03a95652017-07-14 13:48:42 +01001659 }
1660
Tor Norbyebd65b232019-01-07 18:09:28 -08001661 @Deprecated public interface ConnectionKeepAliveStrategy {
1662 method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01001663 }
1664
Tor Norbyebd65b232019-01-07 18:09:28 -08001665 @Deprecated public class ConnectionPoolTimeoutException extends org.apache.http.conn.ConnectTimeoutException {
1666 ctor @Deprecated public ConnectionPoolTimeoutException();
1667 ctor @Deprecated public ConnectionPoolTimeoutException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001668 }
1669
Tor Norbyebd65b232019-01-07 18:09:28 -08001670 @Deprecated public interface ConnectionReleaseTrigger {
1671 method @Deprecated public void abortConnection() throws java.io.IOException;
1672 method @Deprecated public void releaseConnection() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001673 }
1674
Tor Norbyebd65b232019-01-07 18:09:28 -08001675 @Deprecated public class EofSensorInputStream extends java.io.InputStream implements org.apache.http.conn.ConnectionReleaseTrigger {
1676 ctor @Deprecated public EofSensorInputStream(java.io.InputStream, org.apache.http.conn.EofSensorWatcher);
1677 method @Deprecated public void abortConnection() throws java.io.IOException;
1678 method @Deprecated protected void checkAbort() throws java.io.IOException;
1679 method @Deprecated protected void checkClose() throws java.io.IOException;
1680 method @Deprecated protected void checkEOF(int) throws java.io.IOException;
1681 method @Deprecated protected boolean isReadAllowed() throws java.io.IOException;
1682 method @Deprecated public int read() throws java.io.IOException;
1683 method @Deprecated public void releaseConnection() throws java.io.IOException;
1684 field @Deprecated protected java.io.InputStream wrappedStream;
Paul Duffin03a95652017-07-14 13:48:42 +01001685 }
1686
Tor Norbyebd65b232019-01-07 18:09:28 -08001687 @Deprecated public interface EofSensorWatcher {
1688 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1689 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1690 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001691 }
1692
Tor Norbyebd65b232019-01-07 18:09:28 -08001693 @Deprecated public class HttpHostConnectException extends java.net.ConnectException {
1694 ctor @Deprecated public HttpHostConnectException(org.apache.http.HttpHost, java.net.ConnectException);
1695 method @Deprecated public org.apache.http.HttpHost getHost();
Paul Duffin03a95652017-07-14 13:48:42 +01001696 }
1697
Tor Norbyebd65b232019-01-07 18:09:28 -08001698 @Deprecated public interface ManagedClientConnection extends org.apache.http.HttpClientConnection org.apache.http.conn.ConnectionReleaseTrigger org.apache.http.HttpInetConnection {
1699 method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
1700 method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
1701 method @Deprecated public Object getState();
1702 method @Deprecated public boolean isMarkedReusable();
1703 method @Deprecated public boolean isSecure();
1704 method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
1705 method @Deprecated public void markReusable();
1706 method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
1707 method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
1708 method @Deprecated public void setState(Object);
1709 method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1710 method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1711 method @Deprecated public void unmarkReusable();
Paul Duffin03a95652017-07-14 13:48:42 +01001712 }
1713
Tor Norbyebd65b232019-01-07 18:09:28 -08001714 @Deprecated public final class MultihomePlainSocketFactory implements org.apache.http.conn.scheme.SocketFactory {
1715 method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.InetAddress, int, org.apache.http.params.HttpParams) throws java.io.IOException;
1716 method @Deprecated public java.net.Socket createSocket();
1717 method @Deprecated public static org.apache.http.conn.MultihomePlainSocketFactory getSocketFactory();
1718 method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentException;
Paul Duffin03a95652017-07-14 13:48:42 +01001719 }
1720
Tor Norbyebd65b232019-01-07 18:09:28 -08001721 @Deprecated public interface OperatedClientConnection extends org.apache.http.HttpClientConnection org.apache.http.HttpInetConnection {
1722 method @Deprecated public java.net.Socket getSocket();
1723 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1724 method @Deprecated public boolean isSecure();
1725 method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1726 method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.IOException;
1727 method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01001728 }
1729
1730}
1731
1732package org.apache.http.conn.params {
1733
Tor Norbyebd65b232019-01-07 18:09:28 -08001734 @Deprecated public interface ConnConnectionPNames {
1735 field @Deprecated public static final String MAX_STATUS_LINE_GARBAGE = "http.connection.max-status-line-garbage";
Paul Duffin03a95652017-07-14 13:48:42 +01001736 }
1737
Tor Norbyebd65b232019-01-07 18:09:28 -08001738 @Deprecated public class ConnConnectionParamBean extends org.apache.http.params.HttpAbstractParamBean {
1739 ctor @Deprecated public ConnConnectionParamBean(org.apache.http.params.HttpParams);
1740 method @Deprecated public void setMaxStatusLineGarbage(int);
Paul Duffin03a95652017-07-14 13:48:42 +01001741 }
1742
Tor Norbyebd65b232019-01-07 18:09:28 -08001743 @Deprecated public interface ConnManagerPNames {
1744 field @Deprecated public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-per-route";
1745 field @Deprecated public static final String MAX_TOTAL_CONNECTIONS = "http.conn-manager.max-total";
1746 field @Deprecated public static final String TIMEOUT = "http.conn-manager.timeout";
Paul Duffin03a95652017-07-14 13:48:42 +01001747 }
1748
Tor Norbyebd65b232019-01-07 18:09:28 -08001749 @Deprecated public class ConnManagerParamBean extends org.apache.http.params.HttpAbstractParamBean {
1750 ctor @Deprecated public ConnManagerParamBean(org.apache.http.params.HttpParams);
1751 method @Deprecated public void setConnectionsPerRoute(org.apache.http.conn.params.ConnPerRouteBean);
1752 method @Deprecated public void setMaxTotalConnections(int);
1753 method @Deprecated public void setTimeout(long);
Paul Duffin03a95652017-07-14 13:48:42 +01001754 }
1755
Tor Norbyebd65b232019-01-07 18:09:28 -08001756 @Deprecated public final class ConnManagerParams implements org.apache.http.conn.params.ConnManagerPNames {
1757 ctor @Deprecated public ConnManagerParams();
1758 method @Deprecated public static org.apache.http.conn.params.ConnPerRoute getMaxConnectionsPerRoute(org.apache.http.params.HttpParams);
1759 method @Deprecated public static int getMaxTotalConnections(org.apache.http.params.HttpParams);
1760 method @Deprecated public static long getTimeout(org.apache.http.params.HttpParams);
1761 method @Deprecated public static void setMaxConnectionsPerRoute(org.apache.http.params.HttpParams, org.apache.http.conn.params.ConnPerRoute);
1762 method @Deprecated public static void setMaxTotalConnections(org.apache.http.params.HttpParams, int);
1763 method @Deprecated public static void setTimeout(org.apache.http.params.HttpParams, long);
1764 field @Deprecated public static final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20; // 0x14
Paul Duffin03a95652017-07-14 13:48:42 +01001765 }
1766
Tor Norbyebd65b232019-01-07 18:09:28 -08001767 @Deprecated public interface ConnPerRoute {
1768 method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
Paul Duffin03a95652017-07-14 13:48:42 +01001769 }
1770
Tor Norbyebd65b232019-01-07 18:09:28 -08001771 @Deprecated public final class ConnPerRouteBean implements org.apache.http.conn.params.ConnPerRoute {
1772 ctor @Deprecated public ConnPerRouteBean(int);
1773 ctor @Deprecated public ConnPerRouteBean();
1774 method @Deprecated public int getDefaultMax();
1775 method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1776 method @Deprecated public void setDefaultMaxPerRoute(int);
1777 method @Deprecated public void setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int);
1778 method @Deprecated public void setMaxForRoutes(java.util.Map<org.apache.http.conn.routing.HttpRoute,java.lang.Integer>);
1779 field @Deprecated public static final int DEFAULT_MAX_CONNECTIONS_PER_ROUTE = 2; // 0x2
Paul Duffin03a95652017-07-14 13:48:42 +01001780 }
1781
Tor Norbyebd65b232019-01-07 18:09:28 -08001782 @Deprecated public interface ConnRoutePNames {
1783 field @Deprecated public static final String DEFAULT_PROXY = "http.route.default-proxy";
1784 field @Deprecated public static final String FORCED_ROUTE = "http.route.forced-route";
1785 field @Deprecated public static final String LOCAL_ADDRESS = "http.route.local-address";
Paul Duffin03a95652017-07-14 13:48:42 +01001786 }
1787
Tor Norbyebd65b232019-01-07 18:09:28 -08001788 @Deprecated public class ConnRouteParamBean extends org.apache.http.params.HttpAbstractParamBean {
1789 ctor @Deprecated public ConnRouteParamBean(org.apache.http.params.HttpParams);
1790 method @Deprecated public void setDefaultProxy(org.apache.http.HttpHost);
1791 method @Deprecated public void setForcedRoute(org.apache.http.conn.routing.HttpRoute);
1792 method @Deprecated public void setLocalAddress(java.net.InetAddress);
Paul Duffin03a95652017-07-14 13:48:42 +01001793 }
1794
Tor Norbyebd65b232019-01-07 18:09:28 -08001795 @Deprecated public class ConnRouteParams implements org.apache.http.conn.params.ConnRoutePNames {
1796 method @Deprecated public static org.apache.http.HttpHost getDefaultProxy(org.apache.http.params.HttpParams);
1797 method @Deprecated public static org.apache.http.conn.routing.HttpRoute getForcedRoute(org.apache.http.params.HttpParams);
1798 method @Deprecated public static java.net.InetAddress getLocalAddress(org.apache.http.params.HttpParams);
1799 method @Deprecated public static void setDefaultProxy(org.apache.http.params.HttpParams, org.apache.http.HttpHost);
1800 method @Deprecated public static void setForcedRoute(org.apache.http.params.HttpParams, org.apache.http.conn.routing.HttpRoute);
1801 method @Deprecated public static void setLocalAddress(org.apache.http.params.HttpParams, java.net.InetAddress);
1802 field @Deprecated public static final org.apache.http.HttpHost NO_HOST;
1803 field @Deprecated public static final org.apache.http.conn.routing.HttpRoute NO_ROUTE;
Paul Duffin03a95652017-07-14 13:48:42 +01001804 }
1805
1806}
1807
1808package org.apache.http.conn.routing {
1809
Tor Norbyebd65b232019-01-07 18:09:28 -08001810 @Deprecated public class BasicRouteDirector implements org.apache.http.conn.routing.HttpRouteDirector {
1811 ctor @Deprecated public BasicRouteDirector();
1812 method @Deprecated protected int directStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1813 method @Deprecated protected int firstStep(org.apache.http.conn.routing.RouteInfo);
1814 method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1815 method @Deprecated protected int proxiedStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
Paul Duffin03a95652017-07-14 13:48:42 +01001816 }
1817
Tor Norbyebd65b232019-01-07 18:09:28 -08001818 @Deprecated public final class HttpRoute implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
1819 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost[], boolean, org.apache.http.conn.routing.RouteInfo.TunnelType, org.apache.http.conn.routing.RouteInfo.LayerType);
1820 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost, boolean, org.apache.http.conn.routing.RouteInfo.TunnelType, org.apache.http.conn.routing.RouteInfo.LayerType);
1821 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, boolean);
1822 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost);
1823 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost, boolean);
1824 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1825 method @Deprecated public int getHopCount();
1826 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1827 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1828 method @Deprecated public java.net.InetAddress getLocalAddress();
1829 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1830 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1831 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1832 method @Deprecated public boolean isLayered();
1833 method @Deprecated public boolean isSecure();
1834 method @Deprecated public boolean isTunnelled();
Paul Duffin03a95652017-07-14 13:48:42 +01001835 }
1836
Tor Norbyebd65b232019-01-07 18:09:28 -08001837 @Deprecated public interface HttpRouteDirector {
1838 method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1839 field @Deprecated public static final int COMPLETE = 0; // 0x0
1840 field @Deprecated public static final int CONNECT_PROXY = 2; // 0x2
1841 field @Deprecated public static final int CONNECT_TARGET = 1; // 0x1
1842 field @Deprecated public static final int LAYER_PROTOCOL = 5; // 0x5
1843 field @Deprecated public static final int TUNNEL_PROXY = 4; // 0x4
1844 field @Deprecated public static final int TUNNEL_TARGET = 3; // 0x3
1845 field @Deprecated public static final int UNREACHABLE = -1; // 0xffffffff
Paul Duffin03a95652017-07-14 13:48:42 +01001846 }
1847
Tor Norbyebd65b232019-01-07 18:09:28 -08001848 @Deprecated public interface HttpRoutePlanner {
1849 method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
Paul Duffin03a95652017-07-14 13:48:42 +01001850 }
1851
Tor Norbyebd65b232019-01-07 18:09:28 -08001852 @Deprecated public interface RouteInfo {
1853 method @Deprecated public int getHopCount();
1854 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1855 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1856 method @Deprecated public java.net.InetAddress getLocalAddress();
1857 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1858 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1859 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1860 method @Deprecated public boolean isLayered();
1861 method @Deprecated public boolean isSecure();
1862 method @Deprecated public boolean isTunnelled();
Paul Duffin03a95652017-07-14 13:48:42 +01001863 }
1864
Tor Norbyebd65b232019-01-07 18:09:28 -08001865 @Deprecated public enum RouteInfo.LayerType {
1866 enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType LAYERED;
1867 enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType PLAIN;
Paul Duffin03a95652017-07-14 13:48:42 +01001868 }
1869
Tor Norbyebd65b232019-01-07 18:09:28 -08001870 @Deprecated public enum RouteInfo.TunnelType {
1871 enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType PLAIN;
1872 enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType TUNNELLED;
Paul Duffin03a95652017-07-14 13:48:42 +01001873 }
1874
Tor Norbyebd65b232019-01-07 18:09:28 -08001875 @Deprecated public final class RouteTracker implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
1876 ctor @Deprecated public RouteTracker(org.apache.http.HttpHost, java.net.InetAddress);
1877 ctor @Deprecated public RouteTracker(org.apache.http.conn.routing.HttpRoute);
1878 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1879 method @Deprecated public void connectProxy(org.apache.http.HttpHost, boolean);
1880 method @Deprecated public void connectTarget(boolean);
1881 method @Deprecated public int getHopCount();
1882 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1883 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1884 method @Deprecated public java.net.InetAddress getLocalAddress();
1885 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1886 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1887 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1888 method @Deprecated public boolean isConnected();
1889 method @Deprecated public boolean isLayered();
1890 method @Deprecated public boolean isSecure();
1891 method @Deprecated public boolean isTunnelled();
1892 method @Deprecated public void layerProtocol(boolean);
1893 method @Deprecated public org.apache.http.conn.routing.HttpRoute toRoute();
1894 method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean);
1895 method @Deprecated public void tunnelTarget(boolean);
Paul Duffin03a95652017-07-14 13:48:42 +01001896 }
1897
1898}
1899
1900package org.apache.http.conn.scheme {
1901
Tor Norbyebd65b232019-01-07 18:09:28 -08001902 @Deprecated public final class PlainSocketFactory implements org.apache.http.conn.scheme.SocketFactory {
1903 ctor @Deprecated public PlainSocketFactory(org.apache.http.conn.scheme.HostNameResolver);
1904 ctor @Deprecated public PlainSocketFactory();
1905 method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.InetAddress, int, org.apache.http.params.HttpParams) throws java.io.IOException;
1906 method @Deprecated public java.net.Socket createSocket();
1907 method @Deprecated public static org.apache.http.conn.scheme.PlainSocketFactory getSocketFactory();
1908 method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentException;
Paul Duffin03a95652017-07-14 13:48:42 +01001909 }
1910
Tor Norbyebd65b232019-01-07 18:09:28 -08001911 @Deprecated public final class Scheme {
1912 ctor @Deprecated public Scheme(String, org.apache.http.conn.scheme.SocketFactory, int);
1913 method @Deprecated public int getDefaultPort();
1914 method @Deprecated public String getName();
1915 method @Deprecated public org.apache.http.conn.scheme.SocketFactory getSocketFactory();
1916 method @Deprecated public boolean isLayered();
1917 method @Deprecated public int resolvePort(int);
Paul Duffin03a95652017-07-14 13:48:42 +01001918 }
1919
Tor Norbyebd65b232019-01-07 18:09:28 -08001920 @Deprecated public final class SchemeRegistry {
1921 ctor @Deprecated public SchemeRegistry();
1922 method @Deprecated public org.apache.http.conn.scheme.Scheme get(String);
1923 method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(String);
1924 method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(org.apache.http.HttpHost);
1925 method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1926 method @Deprecated public org.apache.http.conn.scheme.Scheme register(org.apache.http.conn.scheme.Scheme);
1927 method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.conn.scheme.Scheme>);
1928 method @Deprecated public org.apache.http.conn.scheme.Scheme unregister(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001929 }
1930
Paul Duffin03a95652017-07-14 13:48:42 +01001931}
1932
1933package org.apache.http.conn.util {
1934
Tor Norbyebd65b232019-01-07 18:09:28 -08001935 @Deprecated public class InetAddressUtils {
1936 method @Deprecated public static boolean isIPv4Address(String);
1937 method @Deprecated public static boolean isIPv6Address(String);
1938 method @Deprecated public static boolean isIPv6HexCompressedAddress(String);
1939 method @Deprecated public static boolean isIPv6StdAddress(String);
Paul Duffin03a95652017-07-14 13:48:42 +01001940 }
1941
1942}
1943
1944package org.apache.http.cookie {
1945
Tor Norbyebd65b232019-01-07 18:09:28 -08001946 @Deprecated public interface ClientCookie extends org.apache.http.cookie.Cookie {
1947 method @Deprecated public boolean containsAttribute(String);
1948 method @Deprecated public String getAttribute(String);
1949 field @Deprecated public static final String COMMENTURL_ATTR = "commenturl";
1950 field @Deprecated public static final String COMMENT_ATTR = "comment";
1951 field @Deprecated public static final String DISCARD_ATTR = "discard";
1952 field @Deprecated public static final String DOMAIN_ATTR = "domain";
1953 field @Deprecated public static final String EXPIRES_ATTR = "expires";
1954 field @Deprecated public static final String MAX_AGE_ATTR = "max-age";
1955 field @Deprecated public static final String PATH_ATTR = "path";
1956 field @Deprecated public static final String PORT_ATTR = "port";
1957 field @Deprecated public static final String SECURE_ATTR = "secure";
1958 field @Deprecated public static final String VERSION_ATTR = "version";
Paul Duffin03a95652017-07-14 13:48:42 +01001959 }
1960
Tor Norbyebd65b232019-01-07 18:09:28 -08001961 @Deprecated public interface Cookie {
1962 method @Deprecated public String getComment();
1963 method @Deprecated public String getCommentURL();
1964 method @Deprecated public String getDomain();
1965 method @Deprecated public java.util.Date getExpiryDate();
1966 method @Deprecated public String getName();
1967 method @Deprecated public String getPath();
1968 method @Deprecated public int[] getPorts();
1969 method @Deprecated public String getValue();
1970 method @Deprecated public int getVersion();
1971 method @Deprecated public boolean isExpired(java.util.Date);
1972 method @Deprecated public boolean isPersistent();
1973 method @Deprecated public boolean isSecure();
Paul Duffin03a95652017-07-14 13:48:42 +01001974 }
1975
Tor Norbyebd65b232019-01-07 18:09:28 -08001976 @Deprecated public interface CookieAttributeHandler {
1977 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
1978 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
1979 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01001980 }
1981
Tor Norbyebd65b232019-01-07 18:09:28 -08001982 @Deprecated public class CookieIdentityComparator implements java.util.Comparator<org.apache.http.cookie.Cookie> java.io.Serializable {
1983 ctor @Deprecated public CookieIdentityComparator();
1984 method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie);
Paul Duffin03a95652017-07-14 13:48:42 +01001985 }
1986
Tor Norbyebd65b232019-01-07 18:09:28 -08001987 @Deprecated public final class CookieOrigin {
1988 ctor @Deprecated public CookieOrigin(String, int, String, boolean);
1989 method @Deprecated public String getHost();
1990 method @Deprecated public String getPath();
1991 method @Deprecated public int getPort();
1992 method @Deprecated public boolean isSecure();
Paul Duffin03a95652017-07-14 13:48:42 +01001993 }
1994
Tor Norbyebd65b232019-01-07 18:09:28 -08001995 @Deprecated public class CookiePathComparator implements java.util.Comparator<org.apache.http.cookie.Cookie> java.io.Serializable {
1996 ctor @Deprecated public CookiePathComparator();
1997 method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie);
Paul Duffin03a95652017-07-14 13:48:42 +01001998 }
1999
Tor Norbyebd65b232019-01-07 18:09:28 -08002000 @Deprecated public interface CookieSpec {
2001 method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
2002 method @Deprecated public int getVersion();
2003 method @Deprecated public org.apache.http.Header getVersionHeader();
2004 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
2005 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
2006 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01002007 }
2008
Tor Norbyebd65b232019-01-07 18:09:28 -08002009 @Deprecated public interface CookieSpecFactory {
2010 method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01002011 }
2012
Tor Norbyebd65b232019-01-07 18:09:28 -08002013 @Deprecated public final class CookieSpecRegistry {
2014 ctor @Deprecated public CookieSpecRegistry();
2015 method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String, org.apache.http.params.HttpParams) throws java.lang.IllegalStateException;
2016 method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String) throws java.lang.IllegalStateException;
2017 method @Deprecated public java.util.List<java.lang.String> getSpecNames();
2018 method @Deprecated public void register(String, org.apache.http.cookie.CookieSpecFactory);
2019 method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.cookie.CookieSpecFactory>);
2020 method @Deprecated public void unregister(String);
Paul Duffin03a95652017-07-14 13:48:42 +01002021 }
2022
Tor Norbyebd65b232019-01-07 18:09:28 -08002023 @Deprecated public class MalformedCookieException extends org.apache.http.ProtocolException {
2024 ctor @Deprecated public MalformedCookieException();
2025 ctor @Deprecated public MalformedCookieException(String);
2026 ctor @Deprecated public MalformedCookieException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01002027 }
2028
Tor Norbyebd65b232019-01-07 18:09:28 -08002029 @Deprecated public interface SM {
2030 field @Deprecated public static final String COOKIE = "Cookie";
2031 field @Deprecated public static final String COOKIE2 = "Cookie2";
2032 field @Deprecated public static final String SET_COOKIE = "Set-Cookie";
2033 field @Deprecated public static final String SET_COOKIE2 = "Set-Cookie2";
Paul Duffin03a95652017-07-14 13:48:42 +01002034 }
2035
Tor Norbyebd65b232019-01-07 18:09:28 -08002036 @Deprecated public interface SetCookie extends org.apache.http.cookie.Cookie {
2037 method @Deprecated public void setComment(String);
2038 method @Deprecated public void setDomain(String);
2039 method @Deprecated public void setExpiryDate(java.util.Date);
2040 method @Deprecated public void setPath(String);
2041 method @Deprecated public void setSecure(boolean);
2042 method @Deprecated public void setValue(String);
2043 method @Deprecated public void setVersion(int);
Paul Duffin03a95652017-07-14 13:48:42 +01002044 }
2045
Tor Norbyebd65b232019-01-07 18:09:28 -08002046 @Deprecated public interface SetCookie2 extends org.apache.http.cookie.SetCookie {
2047 method @Deprecated public void setCommentURL(String);
2048 method @Deprecated public void setDiscard(boolean);
2049 method @Deprecated public void setPorts(int[]);
Paul Duffin03a95652017-07-14 13:48:42 +01002050 }
2051
2052}
2053
2054package org.apache.http.cookie.params {
2055
Tor Norbyebd65b232019-01-07 18:09:28 -08002056 @Deprecated public interface CookieSpecPNames {
2057 field @Deprecated public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
2058 field @Deprecated public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
Paul Duffin03a95652017-07-14 13:48:42 +01002059 }
2060
Tor Norbyebd65b232019-01-07 18:09:28 -08002061 @Deprecated public class CookieSpecParamBean extends org.apache.http.params.HttpAbstractParamBean {
2062 ctor @Deprecated public CookieSpecParamBean(org.apache.http.params.HttpParams);
2063 method @Deprecated public void setDatePatterns(java.util.Collection<java.lang.String>);
2064 method @Deprecated public void setSingleHeader(boolean);
Paul Duffin03a95652017-07-14 13:48:42 +01002065 }
2066
2067}
2068
2069package org.apache.http.entity {
2070
Tor Norbyebd65b232019-01-07 18:09:28 -08002071 @Deprecated public abstract class AbstractHttpEntity implements org.apache.http.HttpEntity {
2072 ctor @Deprecated protected AbstractHttpEntity();
2073 method @Deprecated public void consumeContent() throws java.io.IOException, java.lang.UnsupportedOperationException;
2074 method @Deprecated public org.apache.http.Header getContentEncoding();
2075 method @Deprecated public org.apache.http.Header getContentType();
2076 method @Deprecated public boolean isChunked();
2077 method @Deprecated public void setChunked(boolean);
2078 method @Deprecated public void setContentEncoding(org.apache.http.Header);
2079 method @Deprecated public void setContentEncoding(String);
2080 method @Deprecated public void setContentType(org.apache.http.Header);
2081 method @Deprecated public void setContentType(String);
2082 field @Deprecated protected boolean chunked;
2083 field @Deprecated protected org.apache.http.Header contentEncoding;
2084 field @Deprecated protected org.apache.http.Header contentType;
Paul Duffin03a95652017-07-14 13:48:42 +01002085 }
2086
Tor Norbyebd65b232019-01-07 18:09:28 -08002087 @Deprecated public class BasicHttpEntity extends org.apache.http.entity.AbstractHttpEntity {
2088 ctor @Deprecated public BasicHttpEntity();
2089 method @Deprecated public void consumeContent() throws java.io.IOException;
2090 method @Deprecated public java.io.InputStream getContent() throws java.lang.IllegalStateException;
2091 method @Deprecated public long getContentLength();
2092 method @Deprecated public boolean isRepeatable();
2093 method @Deprecated public boolean isStreaming();
2094 method @Deprecated public void setContent(java.io.InputStream);
2095 method @Deprecated public void setContentLength(long);
2096 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002097 }
2098
Tor Norbyebd65b232019-01-07 18:09:28 -08002099 @Deprecated public class BufferedHttpEntity extends org.apache.http.entity.HttpEntityWrapper {
2100 ctor @Deprecated public BufferedHttpEntity(org.apache.http.HttpEntity) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002101 }
2102
Tor Norbyebd65b232019-01-07 18:09:28 -08002103 @Deprecated public class ByteArrayEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
2104 ctor @Deprecated public ByteArrayEntity(byte[]);
2105 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2106 method @Deprecated public java.io.InputStream getContent();
2107 method @Deprecated public long getContentLength();
2108 method @Deprecated public boolean isRepeatable();
2109 method @Deprecated public boolean isStreaming();
2110 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2111 field @Deprecated protected final byte[] content;
Paul Duffin03a95652017-07-14 13:48:42 +01002112 }
2113
Tor Norbyebd65b232019-01-07 18:09:28 -08002114 @Deprecated public interface ContentLengthStrategy {
2115 method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
2116 field @Deprecated public static final int CHUNKED = -2; // 0xfffffffe
2117 field @Deprecated public static final int IDENTITY = -1; // 0xffffffff
Paul Duffin03a95652017-07-14 13:48:42 +01002118 }
2119
Tor Norbyebd65b232019-01-07 18:09:28 -08002120 @Deprecated public interface ContentProducer {
2121 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002122 }
2123
Tor Norbyebd65b232019-01-07 18:09:28 -08002124 @Deprecated public class EntityTemplate extends org.apache.http.entity.AbstractHttpEntity {
2125 ctor @Deprecated public EntityTemplate(org.apache.http.entity.ContentProducer);
2126 method @Deprecated public void consumeContent() throws java.io.IOException;
2127 method @Deprecated public java.io.InputStream getContent();
2128 method @Deprecated public long getContentLength();
2129 method @Deprecated public boolean isRepeatable();
2130 method @Deprecated public boolean isStreaming();
2131 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002132 }
2133
Tor Norbyebd65b232019-01-07 18:09:28 -08002134 @Deprecated public class FileEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
2135 ctor @Deprecated public FileEntity(java.io.File, String);
2136 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2137 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2138 method @Deprecated public long getContentLength();
2139 method @Deprecated public boolean isRepeatable();
2140 method @Deprecated public boolean isStreaming();
2141 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2142 field @Deprecated protected final java.io.File file;
Paul Duffin03a95652017-07-14 13:48:42 +01002143 }
2144
Tor Norbyebd65b232019-01-07 18:09:28 -08002145 @Deprecated public class HttpEntityWrapper implements org.apache.http.HttpEntity {
2146 ctor @Deprecated public HttpEntityWrapper(org.apache.http.HttpEntity);
2147 method @Deprecated public void consumeContent() throws java.io.IOException;
2148 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2149 method @Deprecated public org.apache.http.Header getContentEncoding();
2150 method @Deprecated public long getContentLength();
2151 method @Deprecated public org.apache.http.Header getContentType();
2152 method @Deprecated public boolean isChunked();
2153 method @Deprecated public boolean isRepeatable();
2154 method @Deprecated public boolean isStreaming();
2155 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2156 field @Deprecated protected org.apache.http.HttpEntity wrappedEntity;
Paul Duffin03a95652017-07-14 13:48:42 +01002157 }
2158
Tor Norbyebd65b232019-01-07 18:09:28 -08002159 @Deprecated public class InputStreamEntity extends org.apache.http.entity.AbstractHttpEntity {
2160 ctor @Deprecated public InputStreamEntity(java.io.InputStream, long);
2161 method @Deprecated public void consumeContent() throws java.io.IOException;
2162 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2163 method @Deprecated public long getContentLength();
2164 method @Deprecated public boolean isRepeatable();
2165 method @Deprecated public boolean isStreaming();
2166 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002167 }
2168
Tor Norbyebd65b232019-01-07 18:09:28 -08002169 @Deprecated public class SerializableEntity extends org.apache.http.entity.AbstractHttpEntity {
2170 ctor @Deprecated public SerializableEntity(java.io.Serializable, boolean) throws java.io.IOException;
2171 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
2172 method @Deprecated public long getContentLength();
2173 method @Deprecated public boolean isRepeatable();
2174 method @Deprecated public boolean isStreaming();
2175 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002176 }
2177
Tor Norbyebd65b232019-01-07 18:09:28 -08002178 @Deprecated public class StringEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
2179 ctor @Deprecated public StringEntity(String, String) throws java.io.UnsupportedEncodingException;
2180 ctor @Deprecated public StringEntity(String) throws java.io.UnsupportedEncodingException;
2181 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2182 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2183 method @Deprecated public long getContentLength();
2184 method @Deprecated public boolean isRepeatable();
2185 method @Deprecated public boolean isStreaming();
2186 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2187 field @Deprecated protected final byte[] content;
Paul Duffin03a95652017-07-14 13:48:42 +01002188 }
2189
2190}
2191
2192package org.apache.http.impl {
2193
Tor Norbyebd65b232019-01-07 18:09:28 -08002194 @Deprecated public abstract class AbstractHttpClientConnection implements org.apache.http.HttpClientConnection {
2195 ctor @Deprecated public AbstractHttpClientConnection();
2196 method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2197 method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializer();
2198 method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2199 method @Deprecated protected org.apache.http.HttpResponseFactory createHttpResponseFactory();
2200 method @Deprecated protected org.apache.http.io.HttpMessageWriter createRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2201 method @Deprecated protected org.apache.http.io.HttpMessageParser createResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
2202 method @Deprecated protected void doFlush() throws java.io.IOException;
2203 method @Deprecated public void flush() throws java.io.IOException;
2204 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2205 method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2206 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2207 method @Deprecated public boolean isStale();
2208 method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2209 method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
2210 method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
2211 method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002212 }
2213
Tor Norbyebd65b232019-01-07 18:09:28 -08002214 @Deprecated public abstract class AbstractHttpServerConnection implements org.apache.http.HttpServerConnection {
2215 ctor @Deprecated public AbstractHttpServerConnection();
2216 method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2217 method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializer();
2218 method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2219 method @Deprecated protected org.apache.http.HttpRequestFactory createHttpRequestFactory();
2220 method @Deprecated protected org.apache.http.io.HttpMessageParser createRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpRequestFactory, org.apache.http.params.HttpParams);
2221 method @Deprecated protected org.apache.http.io.HttpMessageWriter createResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2222 method @Deprecated protected void doFlush() throws java.io.IOException;
2223 method @Deprecated public void flush() throws java.io.IOException;
2224 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2225 method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2226 method @Deprecated public boolean isStale();
2227 method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
2228 method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.http.HttpException, java.io.IOException;
2229 method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2230 method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002231 }
2232
Tor Norbyebd65b232019-01-07 18:09:28 -08002233 @Deprecated public class DefaultConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrategy {
2234 ctor @Deprecated public DefaultConnectionReuseStrategy();
2235 method @Deprecated protected org.apache.http.TokenIterator createTokenIterator(org.apache.http.HeaderIterator);
2236 method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002237 }
2238
Tor Norbyebd65b232019-01-07 18:09:28 -08002239 @Deprecated public class DefaultHttpClientConnection extends org.apache.http.impl.SocketHttpClientConnection {
2240 ctor @Deprecated public DefaultHttpClientConnection();
2241 method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002242 }
2243
Tor Norbyebd65b232019-01-07 18:09:28 -08002244 @Deprecated public class DefaultHttpRequestFactory implements org.apache.http.HttpRequestFactory {
2245 ctor @Deprecated public DefaultHttpRequestFactory();
2246 method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) throws org.apache.http.MethodNotSupportedException;
2247 method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.apache.http.MethodNotSupportedException;
Paul Duffin03a95652017-07-14 13:48:42 +01002248 }
2249
Tor Norbyebd65b232019-01-07 18:09:28 -08002250 @Deprecated public class DefaultHttpResponseFactory implements org.apache.http.HttpResponseFactory {
2251 ctor @Deprecated public DefaultHttpResponseFactory(org.apache.http.ReasonPhraseCatalog);
2252 ctor @Deprecated public DefaultHttpResponseFactory();
2253 method @Deprecated protected java.util.Locale determineLocale(org.apache.http.protocol.HttpContext);
2254 method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVersion, int, org.apache.http.protocol.HttpContext);
2255 method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine, org.apache.http.protocol.HttpContext);
2256 field @Deprecated protected final org.apache.http.ReasonPhraseCatalog reasonCatalog;
Paul Duffin03a95652017-07-14 13:48:42 +01002257 }
2258
Tor Norbyebd65b232019-01-07 18:09:28 -08002259 @Deprecated public class DefaultHttpServerConnection extends org.apache.http.impl.SocketHttpServerConnection {
2260 ctor @Deprecated public DefaultHttpServerConnection();
2261 method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002262 }
2263
Tor Norbyebd65b232019-01-07 18:09:28 -08002264 @Deprecated public class EnglishReasonPhraseCatalog implements org.apache.http.ReasonPhraseCatalog {
2265 ctor @Deprecated protected EnglishReasonPhraseCatalog();
2266 method @Deprecated public String getReason(int, java.util.Locale);
2267 field @Deprecated public static final org.apache.http.impl.EnglishReasonPhraseCatalog INSTANCE;
Paul Duffin03a95652017-07-14 13:48:42 +01002268 }
2269
Tor Norbyebd65b232019-01-07 18:09:28 -08002270 @Deprecated public class HttpConnectionMetricsImpl implements org.apache.http.HttpConnectionMetrics {
2271 ctor @Deprecated public HttpConnectionMetricsImpl(org.apache.http.io.HttpTransportMetrics, org.apache.http.io.HttpTransportMetrics);
2272 method @Deprecated public Object getMetric(String);
2273 method @Deprecated public long getReceivedBytesCount();
2274 method @Deprecated public long getRequestCount();
2275 method @Deprecated public long getResponseCount();
2276 method @Deprecated public long getSentBytesCount();
2277 method @Deprecated public void incrementRequestCount();
2278 method @Deprecated public void incrementResponseCount();
2279 method @Deprecated public void reset();
2280 method @Deprecated public void setMetric(String, Object);
2281 field @Deprecated public static final String RECEIVED_BYTES_COUNT = "http.received-bytes-count";
2282 field @Deprecated public static final String REQUEST_COUNT = "http.request-count";
2283 field @Deprecated public static final String RESPONSE_COUNT = "http.response-count";
2284 field @Deprecated public static final String SENT_BYTES_COUNT = "http.sent-bytes-count";
Paul Duffin03a95652017-07-14 13:48:42 +01002285 }
2286
Tor Norbyebd65b232019-01-07 18:09:28 -08002287 @Deprecated public class NoConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrategy {
2288 ctor @Deprecated public NoConnectionReuseStrategy();
2289 method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002290 }
2291
Tor Norbyebd65b232019-01-07 18:09:28 -08002292 @Deprecated public class SocketHttpClientConnection extends org.apache.http.impl.AbstractHttpClientConnection implements org.apache.http.HttpInetConnection {
2293 ctor @Deprecated public SocketHttpClientConnection();
2294 method @Deprecated protected void assertNotOpen();
2295 method @Deprecated protected void assertOpen();
2296 method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
2297 method @Deprecated public void close() throws java.io.IOException;
2298 method @Deprecated protected org.apache.http.io.SessionInputBuffer createSessionInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2299 method @Deprecated protected org.apache.http.io.SessionOutputBuffer createSessionOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2300 method @Deprecated public java.net.InetAddress getLocalAddress();
2301 method @Deprecated public int getLocalPort();
2302 method @Deprecated public java.net.InetAddress getRemoteAddress();
2303 method @Deprecated public int getRemotePort();
2304 method @Deprecated protected java.net.Socket getSocket();
2305 method @Deprecated public int getSocketTimeout();
2306 method @Deprecated public boolean isOpen();
2307 method @Deprecated public void setSocketTimeout(int);
2308 method @Deprecated public void shutdown() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002309 }
2310
Tor Norbyebd65b232019-01-07 18:09:28 -08002311 @Deprecated public class SocketHttpServerConnection extends org.apache.http.impl.AbstractHttpServerConnection implements org.apache.http.HttpInetConnection {
2312 ctor @Deprecated public SocketHttpServerConnection();
2313 method @Deprecated protected void assertNotOpen();
2314 method @Deprecated protected void assertOpen();
2315 method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
2316 method @Deprecated public void close() throws java.io.IOException;
2317 method @Deprecated protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2318 method @Deprecated protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2319 method @Deprecated public java.net.InetAddress getLocalAddress();
2320 method @Deprecated public int getLocalPort();
2321 method @Deprecated public java.net.InetAddress getRemoteAddress();
2322 method @Deprecated public int getRemotePort();
2323 method @Deprecated protected java.net.Socket getSocket();
2324 method @Deprecated public int getSocketTimeout();
2325 method @Deprecated public boolean isOpen();
2326 method @Deprecated public void setSocketTimeout(int);
2327 method @Deprecated public void shutdown() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002328 }
2329
2330}
2331
2332package org.apache.http.impl.auth {
2333
Tor Norbyebd65b232019-01-07 18:09:28 -08002334 @Deprecated public abstract class AuthSchemeBase implements org.apache.http.auth.AuthScheme {
2335 ctor @Deprecated public AuthSchemeBase();
2336 method @Deprecated public boolean isProxy();
2337 method @Deprecated protected abstract void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
2338 method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.auth.MalformedChallengeException;
Paul Duffin03a95652017-07-14 13:48:42 +01002339 }
2340
Tor Norbyebd65b232019-01-07 18:09:28 -08002341 @Deprecated public class BasicScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2342 ctor @Deprecated public BasicScheme();
2343 method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
2344 method @Deprecated public static org.apache.http.Header authenticate(org.apache.http.auth.Credentials, String, boolean);
2345 method @Deprecated public String getSchemeName();
2346 method @Deprecated public boolean isComplete();
2347 method @Deprecated public boolean isConnectionBased();
Paul Duffin03a95652017-07-14 13:48:42 +01002348 }
2349
Tor Norbyebd65b232019-01-07 18:09:28 -08002350 @Deprecated public class BasicSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2351 ctor @Deprecated public BasicSchemeFactory();
2352 method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01002353 }
2354
Tor Norbyebd65b232019-01-07 18:09:28 -08002355 @Deprecated public class DigestScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2356 ctor @Deprecated public DigestScheme();
2357 method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
2358 method @Deprecated public static String createCnonce();
2359 method @Deprecated public String getSchemeName();
2360 method @Deprecated public boolean isComplete();
2361 method @Deprecated public boolean isConnectionBased();
2362 method @Deprecated public void overrideParamter(String, String);
Paul Duffin03a95652017-07-14 13:48:42 +01002363 }
2364
Tor Norbyebd65b232019-01-07 18:09:28 -08002365 @Deprecated public class DigestSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2366 ctor @Deprecated public DigestSchemeFactory();
2367 method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01002368 }
2369
Tor Norbyebd65b232019-01-07 18:09:28 -08002370 @Deprecated public interface NTLMEngine {
2371 method @Deprecated public String generateType1Msg(String, String) throws org.apache.http.impl.auth.NTLMEngineException;
2372 method @Deprecated public String generateType3Msg(String, String, String, String, String) throws org.apache.http.impl.auth.NTLMEngineException;
Paul Duffin03a95652017-07-14 13:48:42 +01002373 }
2374
Tor Norbyebd65b232019-01-07 18:09:28 -08002375 @Deprecated public class NTLMEngineException extends org.apache.http.auth.AuthenticationException {
2376 ctor @Deprecated public NTLMEngineException();
2377 ctor @Deprecated public NTLMEngineException(String);
2378 ctor @Deprecated public NTLMEngineException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01002379 }
2380
Tor Norbyebd65b232019-01-07 18:09:28 -08002381 @Deprecated public class NTLMScheme extends org.apache.http.impl.auth.AuthSchemeBase {
2382 ctor @Deprecated public NTLMScheme(org.apache.http.impl.auth.NTLMEngine);
2383 method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
2384 method @Deprecated public String getParameter(String);
2385 method @Deprecated public String getRealm();
2386 method @Deprecated public String getSchemeName();
2387 method @Deprecated public boolean isComplete();
2388 method @Deprecated public boolean isConnectionBased();
2389 method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
Paul Duffin03a95652017-07-14 13:48:42 +01002390 }
2391
Tor Norbyebd65b232019-01-07 18:09:28 -08002392 @Deprecated public abstract class RFC2617Scheme extends org.apache.http.impl.auth.AuthSchemeBase {
2393 ctor @Deprecated public RFC2617Scheme();
2394 method @Deprecated public String getParameter(String);
2395 method @Deprecated protected java.util.Map<java.lang.String,java.lang.String> getParameters();
2396 method @Deprecated public String getRealm();
2397 method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
Paul Duffin03a95652017-07-14 13:48:42 +01002398 }
2399
Tor Norbyebd65b232019-01-07 18:09:28 -08002400 @Deprecated public class UnsupportedDigestAlgorithmException extends java.lang.RuntimeException {
2401 ctor @Deprecated public UnsupportedDigestAlgorithmException();
2402 ctor @Deprecated public UnsupportedDigestAlgorithmException(String);
2403 ctor @Deprecated public UnsupportedDigestAlgorithmException(String, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01002404 }
2405
2406}
2407
2408package org.apache.http.impl.client {
2409
Tor Norbyebd65b232019-01-07 18:09:28 -08002410 @Deprecated public abstract class AbstractAuthenticationHandler implements org.apache.http.client.AuthenticationHandler {
2411 ctor @Deprecated public AbstractAuthenticationHandler();
2412 method @Deprecated protected java.util.List<java.lang.String> getAuthPreferences();
2413 method @Deprecated protected java.util.Map<java.lang.String,org.apache.http.Header> parseChallenges(org.apache.http.Header[]) throws org.apache.http.auth.MalformedChallengeException;
2414 method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.String,org.apache.http.Header>, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.AuthenticationException;
Paul Duffin03a95652017-07-14 13:48:42 +01002415 }
2416
Tor Norbyebd65b232019-01-07 18:09:28 -08002417 @Deprecated public abstract class AbstractHttpClient implements org.apache.http.client.HttpClient {
2418 ctor @Deprecated protected AbstractHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache.http.params.HttpParams);
2419 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
2420 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
2421 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
2422 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
2423 method @Deprecated public void clearRequestInterceptors();
2424 method @Deprecated public void clearResponseInterceptors();
2425 method @Deprecated protected abstract org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
2426 method @Deprecated protected abstract org.apache.http.conn.ClientConnectionManager createClientConnectionManager();
2427 method @Deprecated protected org.apache.http.client.RequestDirector createClientRequestDirector(org.apache.http.protocol.HttpRequestExecutor, org.apache.http.conn.ClientConnectionManager, org.apache.http.ConnectionReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy, org.apache.http.conn.routing.HttpRoutePlanner, org.apache.http.protocol.HttpProcessor, org.apache.http.client.HttpRequestRetryHandler, org.apache.http.client.RedirectHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.UserTokenHandler, org.apache.http.params.HttpParams);
2428 method @Deprecated protected abstract org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeepAliveStrategy();
2429 method @Deprecated protected abstract org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy();
2430 method @Deprecated protected abstract org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
2431 method @Deprecated protected abstract org.apache.http.client.CookieStore createCookieStore();
2432 method @Deprecated protected abstract org.apache.http.client.CredentialsProvider createCredentialsProvider();
2433 method @Deprecated protected abstract org.apache.http.protocol.HttpContext createHttpContext();
2434 method @Deprecated protected abstract org.apache.http.params.HttpParams createHttpParams();
2435 method @Deprecated protected abstract org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
2436 method @Deprecated protected abstract org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetryHandler();
2437 method @Deprecated protected abstract org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner();
2438 method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createProxyAuthenticationHandler();
2439 method @Deprecated protected abstract org.apache.http.client.RedirectHandler createRedirectHandler();
2440 method @Deprecated protected abstract org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
2441 method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createTargetAuthenticationHandler();
2442 method @Deprecated protected abstract org.apache.http.client.UserTokenHandler createUserTokenHandler();
2443 method @Deprecated protected org.apache.http.params.HttpParams determineParams(org.apache.http.HttpRequest);
2444 method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2445 method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2446 method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2447 method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2448 method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2449 method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2450 method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2451 method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.client.ResponseHandler<? extends T>, org.apache.http.protocol.HttpContext) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2452 method @Deprecated public final org.apache.http.auth.AuthSchemeRegistry getAuthSchemes();
2453 method @Deprecated public final org.apache.http.conn.ConnectionKeepAliveStrategy getConnectionKeepAliveStrategy();
2454 method @Deprecated public final org.apache.http.conn.ClientConnectionManager getConnectionManager();
2455 method @Deprecated public final org.apache.http.ConnectionReuseStrategy getConnectionReuseStrategy();
2456 method @Deprecated public final org.apache.http.cookie.CookieSpecRegistry getCookieSpecs();
2457 method @Deprecated public final org.apache.http.client.CookieStore getCookieStore();
2458 method @Deprecated public final org.apache.http.client.CredentialsProvider getCredentialsProvider();
2459 method @Deprecated protected final org.apache.http.protocol.BasicHttpProcessor getHttpProcessor();
2460 method @Deprecated public final org.apache.http.client.HttpRequestRetryHandler getHttpRequestRetryHandler();
2461 method @Deprecated public final org.apache.http.params.HttpParams getParams();
2462 method @Deprecated public final org.apache.http.client.AuthenticationHandler getProxyAuthenticationHandler();
2463 method @Deprecated public final org.apache.http.client.RedirectHandler getRedirectHandler();
2464 method @Deprecated public final org.apache.http.protocol.HttpRequestExecutor getRequestExecutor();
2465 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
2466 method @Deprecated public int getRequestInterceptorCount();
2467 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
2468 method @Deprecated public int getResponseInterceptorCount();
2469 method @Deprecated public final org.apache.http.conn.routing.HttpRoutePlanner getRoutePlanner();
2470 method @Deprecated public final org.apache.http.client.AuthenticationHandler getTargetAuthenticationHandler();
2471 method @Deprecated public final org.apache.http.client.UserTokenHandler getUserTokenHandler();
2472 method @Deprecated public void removeRequestInterceptorByClass(Class<? extends org.apache.http.HttpRequestInterceptor>);
2473 method @Deprecated public void removeResponseInterceptorByClass(Class<? extends org.apache.http.HttpResponseInterceptor>);
2474 method @Deprecated public void setAuthSchemes(org.apache.http.auth.AuthSchemeRegistry);
2475 method @Deprecated public void setCookieSpecs(org.apache.http.cookie.CookieSpecRegistry);
2476 method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
2477 method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
2478 method @Deprecated public void setHttpRequestRetryHandler(org.apache.http.client.HttpRequestRetryHandler);
2479 method @Deprecated public void setKeepAliveStrategy(org.apache.http.conn.ConnectionKeepAliveStrategy);
2480 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
2481 method @Deprecated public void setProxyAuthenticationHandler(org.apache.http.client.AuthenticationHandler);
2482 method @Deprecated public void setRedirectHandler(org.apache.http.client.RedirectHandler);
2483 method @Deprecated public void setReuseStrategy(org.apache.http.ConnectionReuseStrategy);
2484 method @Deprecated public void setRoutePlanner(org.apache.http.conn.routing.HttpRoutePlanner);
2485 method @Deprecated public void setTargetAuthenticationHandler(org.apache.http.client.AuthenticationHandler);
2486 method @Deprecated public void setUserTokenHandler(org.apache.http.client.UserTokenHandler);
Paul Duffin03a95652017-07-14 13:48:42 +01002487 }
2488
Tor Norbyebd65b232019-01-07 18:09:28 -08002489 @Deprecated public class BasicCookieStore implements org.apache.http.client.CookieStore {
2490 ctor @Deprecated public BasicCookieStore();
2491 method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
2492 method @Deprecated public void addCookies(org.apache.http.cookie.Cookie[]);
2493 method @Deprecated public void clear();
2494 method @Deprecated public boolean clearExpired(java.util.Date);
2495 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
Paul Duffin03a95652017-07-14 13:48:42 +01002496 }
2497
Tor Norbyebd65b232019-01-07 18:09:28 -08002498 @Deprecated public class BasicCredentialsProvider implements org.apache.http.client.CredentialsProvider {
2499 ctor @Deprecated public BasicCredentialsProvider();
2500 method @Deprecated public void clear();
2501 method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope);
2502 method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth.Credentials);
Paul Duffin03a95652017-07-14 13:48:42 +01002503 }
2504
Tor Norbyebd65b232019-01-07 18:09:28 -08002505 @Deprecated public class BasicResponseHandler implements org.apache.http.client.ResponseHandler<java.lang.String> {
2506 ctor @Deprecated public BasicResponseHandler();
2507 method @Deprecated public String handleResponse(org.apache.http.HttpResponse) throws org.apache.http.client.HttpResponseException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002508 }
2509
Tor Norbyebd65b232019-01-07 18:09:28 -08002510 @Deprecated public class ClientParamsStack extends org.apache.http.params.AbstractHttpParams {
2511 ctor @Deprecated public ClientParamsStack(org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
2512 ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack);
2513 ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
2514 method @Deprecated public org.apache.http.params.HttpParams copy();
2515 method @Deprecated public final org.apache.http.params.HttpParams getApplicationParams();
2516 method @Deprecated public final org.apache.http.params.HttpParams getClientParams();
2517 method @Deprecated public final org.apache.http.params.HttpParams getOverrideParams();
2518 method @Deprecated public Object getParameter(String);
2519 method @Deprecated public final org.apache.http.params.HttpParams getRequestParams();
2520 method @Deprecated public boolean removeParameter(String);
2521 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object) throws java.lang.UnsupportedOperationException;
2522 field @Deprecated protected final org.apache.http.params.HttpParams applicationParams;
2523 field @Deprecated protected final org.apache.http.params.HttpParams clientParams;
2524 field @Deprecated protected final org.apache.http.params.HttpParams overrideParams;
2525 field @Deprecated protected final org.apache.http.params.HttpParams requestParams;
Paul Duffin03a95652017-07-14 13:48:42 +01002526 }
2527
Tor Norbyebd65b232019-01-07 18:09:28 -08002528 @Deprecated public class DefaultConnectionKeepAliveStrategy implements org.apache.http.conn.ConnectionKeepAliveStrategy {
2529 ctor @Deprecated public DefaultConnectionKeepAliveStrategy();
2530 method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002531 }
2532
Tor Norbyebd65b232019-01-07 18:09:28 -08002533 @Deprecated public class DefaultHttpClient extends org.apache.http.impl.client.AbstractHttpClient {
2534 ctor @Deprecated public DefaultHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache.http.params.HttpParams);
2535 ctor @Deprecated public DefaultHttpClient(org.apache.http.params.HttpParams);
2536 ctor @Deprecated public DefaultHttpClient();
2537 method @Deprecated protected org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
2538 method @Deprecated protected org.apache.http.conn.ClientConnectionManager createClientConnectionManager();
2539 method @Deprecated protected org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeepAliveStrategy();
2540 method @Deprecated protected org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy();
2541 method @Deprecated protected org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
2542 method @Deprecated protected org.apache.http.client.CookieStore createCookieStore();
2543 method @Deprecated protected org.apache.http.client.CredentialsProvider createCredentialsProvider();
2544 method @Deprecated protected org.apache.http.protocol.HttpContext createHttpContext();
2545 method @Deprecated protected org.apache.http.params.HttpParams createHttpParams();
2546 method @Deprecated protected org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
2547 method @Deprecated protected org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetryHandler();
2548 method @Deprecated protected org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner();
2549 method @Deprecated protected org.apache.http.client.AuthenticationHandler createProxyAuthenticationHandler();
2550 method @Deprecated protected org.apache.http.client.RedirectHandler createRedirectHandler();
2551 method @Deprecated protected org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
2552 method @Deprecated protected org.apache.http.client.AuthenticationHandler createTargetAuthenticationHandler();
2553 method @Deprecated protected org.apache.http.client.UserTokenHandler createUserTokenHandler();
Paul Duffin03a95652017-07-14 13:48:42 +01002554 }
2555
Tor Norbyebd65b232019-01-07 18:09:28 -08002556 @Deprecated public class DefaultHttpRequestRetryHandler implements org.apache.http.client.HttpRequestRetryHandler {
2557 ctor @Deprecated public DefaultHttpRequestRetryHandler(int, boolean);
2558 ctor @Deprecated public DefaultHttpRequestRetryHandler();
2559 method @Deprecated public int getRetryCount();
2560 method @Deprecated public boolean isRequestSentRetryEnabled();
2561 method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002562 }
2563
Tor Norbyebd65b232019-01-07 18:09:28 -08002564 @Deprecated public class DefaultProxyAuthenticationHandler extends org.apache.http.impl.client.AbstractAuthenticationHandler {
2565 ctor @Deprecated public DefaultProxyAuthenticationHandler();
2566 method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.MalformedChallengeException;
2567 method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002568 }
2569
Tor Norbyebd65b232019-01-07 18:09:28 -08002570 @Deprecated public class DefaultRedirectHandler implements org.apache.http.client.RedirectHandler {
2571 ctor @Deprecated public DefaultRedirectHandler();
2572 method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.ProtocolException;
2573 method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002574 }
2575
Tor Norbyebd65b232019-01-07 18:09:28 -08002576 @Deprecated public class DefaultRequestDirector implements org.apache.http.client.RequestDirector {
2577 ctor @Deprecated public DefaultRequestDirector(org.apache.http.protocol.HttpRequestExecutor, org.apache.http.conn.ClientConnectionManager, org.apache.http.ConnectionReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy, org.apache.http.conn.routing.HttpRoutePlanner, org.apache.http.protocol.HttpProcessor, org.apache.http.client.HttpRequestRetryHandler, org.apache.http.client.RedirectHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.AuthenticationHandler, org.apache.http.client.UserTokenHandler, org.apache.http.params.HttpParams);
2578 method @Deprecated protected org.apache.http.HttpRequest createConnectRequest(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext);
2579 method @Deprecated protected boolean createTunnelToProxy(org.apache.http.conn.routing.HttpRoute, int, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2580 method @Deprecated protected boolean createTunnelToTarget(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2581 method @Deprecated protected org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
2582 method @Deprecated protected void establishRoute(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2583 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2584 method @Deprecated protected org.apache.http.impl.client.RoutedRequest handleResponse(org.apache.http.impl.client.RoutedRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2585 method @Deprecated protected void releaseConnection();
2586 method @Deprecated protected void rewriteRequestURI(org.apache.http.impl.client.RequestWrapper, org.apache.http.conn.routing.HttpRoute) throws org.apache.http.ProtocolException;
2587 field @Deprecated protected final org.apache.http.conn.ClientConnectionManager connManager;
2588 field @Deprecated protected final org.apache.http.protocol.HttpProcessor httpProcessor;
2589 field @Deprecated protected final org.apache.http.conn.ConnectionKeepAliveStrategy keepAliveStrategy;
2590 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
2591 field @Deprecated protected final org.apache.http.params.HttpParams params;
2592 field @Deprecated protected final org.apache.http.client.RedirectHandler redirectHandler;
2593 field @Deprecated protected final org.apache.http.protocol.HttpRequestExecutor requestExec;
2594 field @Deprecated protected final org.apache.http.client.HttpRequestRetryHandler retryHandler;
2595 field @Deprecated protected final org.apache.http.ConnectionReuseStrategy reuseStrategy;
2596 field @Deprecated protected final org.apache.http.conn.routing.HttpRoutePlanner routePlanner;
Paul Duffin03a95652017-07-14 13:48:42 +01002597 }
2598
Tor Norbyebd65b232019-01-07 18:09:28 -08002599 @Deprecated public class DefaultTargetAuthenticationHandler extends org.apache.http.impl.client.AbstractAuthenticationHandler {
2600 ctor @Deprecated public DefaultTargetAuthenticationHandler();
2601 method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.auth.MalformedChallengeException;
2602 method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002603 }
2604
Tor Norbyebd65b232019-01-07 18:09:28 -08002605 @Deprecated public class DefaultUserTokenHandler implements org.apache.http.client.UserTokenHandler {
2606 ctor @Deprecated public DefaultUserTokenHandler();
2607 method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01002608 }
2609
Tor Norbyebd65b232019-01-07 18:09:28 -08002610 @Deprecated public class EntityEnclosingRequestWrapper extends org.apache.http.impl.client.RequestWrapper implements org.apache.http.HttpEntityEnclosingRequest {
2611 ctor @Deprecated public EntityEnclosingRequestWrapper(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.ProtocolException;
2612 method @Deprecated public boolean expectContinue();
2613 method @Deprecated public org.apache.http.HttpEntity getEntity();
2614 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
Paul Duffin03a95652017-07-14 13:48:42 +01002615 }
2616
Tor Norbyebd65b232019-01-07 18:09:28 -08002617 @Deprecated public class RedirectLocations {
2618 ctor @Deprecated public RedirectLocations();
2619 method @Deprecated public void add(java.net.URI);
2620 method @Deprecated public boolean contains(java.net.URI);
2621 method @Deprecated public boolean remove(java.net.URI);
Paul Duffin03a95652017-07-14 13:48:42 +01002622 }
2623
Tor Norbyebd65b232019-01-07 18:09:28 -08002624 @Deprecated public class RequestWrapper extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.client.methods.HttpUriRequest {
2625 ctor @Deprecated public RequestWrapper(org.apache.http.HttpRequest) throws org.apache.http.ProtocolException;
2626 method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
2627 method @Deprecated public int getExecCount();
2628 method @Deprecated public String getMethod();
2629 method @Deprecated public org.apache.http.HttpRequest getOriginal();
2630 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
2631 method @Deprecated public org.apache.http.RequestLine getRequestLine();
2632 method @Deprecated public java.net.URI getURI();
2633 method @Deprecated public void incrementExecCount();
2634 method @Deprecated public boolean isAborted();
2635 method @Deprecated public boolean isRepeatable();
2636 method @Deprecated public void resetHeaders();
2637 method @Deprecated public void setMethod(String);
2638 method @Deprecated public void setProtocolVersion(org.apache.http.ProtocolVersion);
2639 method @Deprecated public void setURI(java.net.URI);
Paul Duffin03a95652017-07-14 13:48:42 +01002640 }
2641
Tor Norbyebd65b232019-01-07 18:09:28 -08002642 @Deprecated public class RoutedRequest {
2643 ctor @Deprecated public RoutedRequest(org.apache.http.impl.client.RequestWrapper, org.apache.http.conn.routing.HttpRoute);
2644 method @Deprecated public final org.apache.http.impl.client.RequestWrapper getRequest();
2645 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2646 field @Deprecated protected final org.apache.http.impl.client.RequestWrapper request;
2647 field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
Paul Duffin03a95652017-07-14 13:48:42 +01002648 }
2649
Tor Norbyebd65b232019-01-07 18:09:28 -08002650 @Deprecated public class TunnelRefusedException extends org.apache.http.HttpException {
2651 ctor @Deprecated public TunnelRefusedException(String, org.apache.http.HttpResponse);
2652 method @Deprecated public org.apache.http.HttpResponse getResponse();
Paul Duffin03a95652017-07-14 13:48:42 +01002653 }
2654
2655}
2656
2657package org.apache.http.impl.conn {
2658
Tor Norbyebd65b232019-01-07 18:09:28 -08002659 @Deprecated public abstract class AbstractClientConnAdapter implements org.apache.http.conn.ManagedClientConnection {
2660 ctor @Deprecated protected AbstractClientConnAdapter(org.apache.http.conn.ClientConnectionManager, org.apache.http.conn.OperatedClientConnection);
2661 method @Deprecated public void abortConnection();
2662 method @Deprecated protected final void assertNotAborted() throws java.io.InterruptedIOException;
2663 method @Deprecated protected final void assertValid(org.apache.http.conn.OperatedClientConnection);
2664 method @Deprecated protected void detach();
2665 method @Deprecated public void flush() throws java.io.IOException;
2666 method @Deprecated public java.net.InetAddress getLocalAddress();
2667 method @Deprecated public int getLocalPort();
2668 method @Deprecated protected org.apache.http.conn.ClientConnectionManager getManager();
2669 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2670 method @Deprecated public java.net.InetAddress getRemoteAddress();
2671 method @Deprecated public int getRemotePort();
2672 method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
2673 method @Deprecated public int getSocketTimeout();
2674 method @Deprecated protected org.apache.http.conn.OperatedClientConnection getWrappedConnection();
2675 method @Deprecated public boolean isMarkedReusable();
2676 method @Deprecated public boolean isOpen();
2677 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2678 method @Deprecated public boolean isSecure();
2679 method @Deprecated public boolean isStale();
2680 method @Deprecated public void markReusable();
2681 method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2682 method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
2683 method @Deprecated public void releaseConnection();
2684 method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
2685 method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
2686 method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
2687 method @Deprecated public void setSocketTimeout(int);
2688 method @Deprecated public void unmarkReusable();
Paul Duffin03a95652017-07-14 13:48:42 +01002689 }
2690
Tor Norbyebd65b232019-01-07 18:09:28 -08002691 @Deprecated public abstract class AbstractPoolEntry {
2692 ctor @Deprecated protected AbstractPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.http.conn.routing.HttpRoute);
2693 method @Deprecated public Object getState();
2694 method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2695 method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2696 method @Deprecated public void setState(Object);
2697 method @Deprecated protected void shutdownEntry();
2698 method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2699 method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2700 field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator connOperator;
2701 field @Deprecated protected final org.apache.http.conn.OperatedClientConnection connection;
2702 field @Deprecated protected volatile org.apache.http.conn.routing.HttpRoute route;
2703 field @Deprecated protected volatile Object state;
2704 field @Deprecated protected volatile org.apache.http.conn.routing.RouteTracker tracker;
Paul Duffin03a95652017-07-14 13:48:42 +01002705 }
2706
Tor Norbyebd65b232019-01-07 18:09:28 -08002707 @Deprecated public abstract class AbstractPooledConnAdapter extends org.apache.http.impl.conn.AbstractClientConnAdapter {
2708 ctor @Deprecated protected AbstractPooledConnAdapter(org.apache.http.conn.ClientConnectionManager, org.apache.http.impl.conn.AbstractPoolEntry);
2709 method @Deprecated protected final void assertAttached();
2710 method @Deprecated public void close() throws java.io.IOException;
2711 method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
2712 method @Deprecated public Object getState();
2713 method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2714 method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2715 method @Deprecated public void setState(Object);
2716 method @Deprecated public void shutdown() throws java.io.IOException;
2717 method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2718 method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2719 field @Deprecated protected volatile org.apache.http.impl.conn.AbstractPoolEntry poolEntry;
Paul Duffin03a95652017-07-14 13:48:42 +01002720 }
2721
Tor Norbyebd65b232019-01-07 18:09:28 -08002722 @Deprecated public class DefaultClientConnection extends org.apache.http.impl.SocketHttpClientConnection implements org.apache.http.conn.OperatedClientConnection {
2723 ctor @Deprecated public DefaultClientConnection();
2724 method @Deprecated public final java.net.Socket getSocket();
2725 method @Deprecated public final org.apache.http.HttpHost getTargetHost();
2726 method @Deprecated public final boolean isSecure();
2727 method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2728 method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.IOException;
2729 method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002730 }
2731
Tor Norbyebd65b232019-01-07 18:09:28 -08002732 @Deprecated public class DefaultClientConnectionOperator implements org.apache.http.conn.ClientConnectionOperator {
2733 ctor @Deprecated public DefaultClientConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
2734 method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
2735 method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2736 method @Deprecated protected void prepareSocket(java.net.Socket, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2737 method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnection, org.apache.http.HttpHost, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2738 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
Paul Duffin03a95652017-07-14 13:48:42 +01002739 }
2740
Tor Norbyebd65b232019-01-07 18:09:28 -08002741 @Deprecated public class DefaultHttpRoutePlanner implements org.apache.http.conn.routing.HttpRoutePlanner {
2742 ctor @Deprecated public DefaultHttpRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry);
2743 method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
2744 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
Paul Duffin03a95652017-07-14 13:48:42 +01002745 }
2746
Tor Norbyebd65b232019-01-07 18:09:28 -08002747 @Deprecated public class DefaultResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
2748 ctor @Deprecated public DefaultResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
2749 method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002750 }
2751
Tor Norbyebd65b232019-01-07 18:09:28 -08002752 @Deprecated public class IdleConnectionHandler {
2753 ctor @Deprecated public IdleConnectionHandler();
2754 method @Deprecated public void add(org.apache.http.HttpConnection, long, java.util.concurrent.TimeUnit);
2755 method @Deprecated public void closeExpiredConnections();
2756 method @Deprecated public void closeIdleConnections(long);
2757 method @Deprecated public boolean remove(org.apache.http.HttpConnection);
2758 method @Deprecated public void removeAll();
Paul Duffin03a95652017-07-14 13:48:42 +01002759 }
2760
Tor Norbyebd65b232019-01-07 18:09:28 -08002761 @Deprecated public class LoggingSessionInputBuffer implements org.apache.http.io.SessionInputBuffer {
2762 ctor @Deprecated public LoggingSessionInputBuffer(org.apache.http.io.SessionInputBuffer, org.apache.http.impl.conn.Wire);
2763 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2764 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
2765 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
2766 method @Deprecated public int read() throws java.io.IOException;
2767 method @Deprecated public int read(byte[]) throws java.io.IOException;
2768 method @Deprecated public String readLine() throws java.io.IOException;
2769 method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002770 }
2771
Tor Norbyebd65b232019-01-07 18:09:28 -08002772 @Deprecated public class LoggingSessionOutputBuffer implements org.apache.http.io.SessionOutputBuffer {
2773 ctor @Deprecated public LoggingSessionOutputBuffer(org.apache.http.io.SessionOutputBuffer, org.apache.http.impl.conn.Wire);
2774 method @Deprecated public void flush() throws java.io.IOException;
2775 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2776 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
2777 method @Deprecated public void write(int) throws java.io.IOException;
2778 method @Deprecated public void write(byte[]) throws java.io.IOException;
2779 method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
2780 method @Deprecated public void writeLine(String) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002781 }
2782
Tor Norbyebd65b232019-01-07 18:09:28 -08002783 @Deprecated public class ProxySelectorRoutePlanner implements org.apache.http.conn.routing.HttpRoutePlanner {
2784 ctor @Deprecated public ProxySelectorRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry, java.net.ProxySelector);
2785 method @Deprecated protected java.net.Proxy chooseProxy(java.util.List<java.net.Proxy>, org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext);
2786 method @Deprecated protected org.apache.http.HttpHost determineProxy(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
2787 method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
2788 method @Deprecated protected String getHost(java.net.InetSocketAddress);
2789 method @Deprecated public java.net.ProxySelector getProxySelector();
2790 method @Deprecated public void setProxySelector(java.net.ProxySelector);
2791 field @Deprecated protected java.net.ProxySelector proxySelector;
2792 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
Paul Duffin03a95652017-07-14 13:48:42 +01002793 }
2794
Tor Norbyebd65b232019-01-07 18:09:28 -08002795 @Deprecated public class SingleClientConnManager implements org.apache.http.conn.ClientConnectionManager {
2796 ctor @Deprecated public SingleClientConnManager(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
2797 method @Deprecated protected final void assertStillUp() throws java.lang.IllegalStateException;
2798 method @Deprecated public void closeExpiredConnections();
2799 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2800 method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
2801 method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(org.apache.http.conn.routing.HttpRoute, Object);
2802 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2803 method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
2804 method @Deprecated public final org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
2805 method @Deprecated protected void revokeConnection();
2806 method @Deprecated public void shutdown();
2807 field @Deprecated public static final String MISUSE_MESSAGE = "Invalid use of SingleClientConnManager: connection still allocated.\nMake sure to release the connection before allocating another one.";
2808 field @Deprecated protected boolean alwaysShutDown;
2809 field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2810 field @Deprecated protected long connectionExpiresTime;
2811 field @Deprecated protected volatile boolean isShutDown;
2812 field @Deprecated protected long lastReleaseTime;
2813 field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.ConnAdapter managedConn;
2814 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2815 field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.PoolEntry uniquePoolEntry;
Paul Duffin03a95652017-07-14 13:48:42 +01002816 }
2817
Tor Norbyebd65b232019-01-07 18:09:28 -08002818 @Deprecated protected class SingleClientConnManager.ConnAdapter extends org.apache.http.impl.conn.AbstractPooledConnAdapter {
2819 ctor @Deprecated protected SingleClientConnManager.ConnAdapter(org.apache.http.impl.conn.SingleClientConnManager.PoolEntry, org.apache.http.conn.routing.HttpRoute);
Paul Duffin03a95652017-07-14 13:48:42 +01002820 }
2821
Tor Norbyebd65b232019-01-07 18:09:28 -08002822 @Deprecated protected class SingleClientConnManager.PoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
2823 ctor @Deprecated protected SingleClientConnManager.PoolEntry();
2824 method @Deprecated protected void close() throws java.io.IOException;
2825 method @Deprecated protected void shutdown() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002826 }
2827
Tor Norbyebd65b232019-01-07 18:09:28 -08002828 @Deprecated public class Wire {
2829 ctor @Deprecated public Wire(org.apache.commons.logging.Log);
2830 method @Deprecated public boolean enabled();
2831 method @Deprecated public void input(java.io.InputStream) throws java.io.IOException;
2832 method @Deprecated public void input(byte[], int, int) throws java.io.IOException;
2833 method @Deprecated public void input(byte[]) throws java.io.IOException;
2834 method @Deprecated public void input(int) throws java.io.IOException;
2835 method @Deprecated public void input(String) throws java.io.IOException;
2836 method @Deprecated public void output(java.io.InputStream) throws java.io.IOException;
2837 method @Deprecated public void output(byte[], int, int) throws java.io.IOException;
2838 method @Deprecated public void output(byte[]) throws java.io.IOException;
2839 method @Deprecated public void output(int) throws java.io.IOException;
2840 method @Deprecated public void output(String) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01002841 }
2842
2843}
2844
2845package org.apache.http.impl.conn.tsccm {
2846
Tor Norbyebd65b232019-01-07 18:09:28 -08002847 @Deprecated public abstract class AbstractConnPool implements org.apache.http.impl.conn.tsccm.RefQueueHandler {
2848 ctor @Deprecated protected AbstractConnPool();
2849 method @Deprecated protected void closeConnection(org.apache.http.conn.OperatedClientConnection);
2850 method @Deprecated public void closeExpiredConnections();
2851 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2852 method @Deprecated public abstract void deleteClosedConnections();
2853 method @Deprecated public void enableConnectionGC() throws java.lang.IllegalStateException;
2854 method @Deprecated public abstract void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, long, java.util.concurrent.TimeUnit);
2855 method @Deprecated public final org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntry(org.apache.http.conn.routing.HttpRoute, Object, long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
2856 method @Deprecated protected abstract void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2857 method @Deprecated public void handleReference(java.lang.ref.Reference);
2858 method @Deprecated public abstract org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.apache.http.conn.routing.HttpRoute, Object);
2859 method @Deprecated public void shutdown();
2860 field @Deprecated protected org.apache.http.impl.conn.IdleConnectionHandler idleConnHandler;
2861 field @Deprecated protected volatile boolean isShutDown;
2862 field @Deprecated protected java.util.Set<org.apache.http.impl.conn.tsccm.BasicPoolEntryRef> issuedConnections;
2863 field @Deprecated protected int numConnections;
2864 field @Deprecated protected final java.util.concurrent.locks.Lock poolLock;
2865 field @Deprecated protected java.lang.ref.ReferenceQueue<java.lang.Object> refQueue;
Paul Duffin03a95652017-07-14 13:48:42 +01002866 }
2867
Tor Norbyebd65b232019-01-07 18:09:28 -08002868 @Deprecated public class BasicPoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
2869 ctor @Deprecated public BasicPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.http.conn.routing.HttpRoute, java.lang.ref.ReferenceQueue<java.lang.Object>);
2870 method @Deprecated protected final org.apache.http.conn.OperatedClientConnection getConnection();
2871 method @Deprecated protected final org.apache.http.conn.routing.HttpRoute getPlannedRoute();
2872 method @Deprecated protected final org.apache.http.impl.conn.tsccm.BasicPoolEntryRef getWeakRef();
Paul Duffin03a95652017-07-14 13:48:42 +01002873 }
2874
Tor Norbyebd65b232019-01-07 18:09:28 -08002875 @Deprecated public class BasicPoolEntryRef extends java.lang.ref.WeakReference<org.apache.http.impl.conn.tsccm.BasicPoolEntry> {
2876 ctor @Deprecated public BasicPoolEntryRef(org.apache.http.impl.conn.tsccm.BasicPoolEntry, java.lang.ref.ReferenceQueue<java.lang.Object>);
2877 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
Paul Duffin03a95652017-07-14 13:48:42 +01002878 }
2879
Tor Norbyebd65b232019-01-07 18:09:28 -08002880 @Deprecated public class BasicPooledConnAdapter extends org.apache.http.impl.conn.AbstractPooledConnAdapter {
2881 ctor @Deprecated protected BasicPooledConnAdapter(org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager, org.apache.http.impl.conn.AbstractPoolEntry);
2882 method @Deprecated protected org.apache.http.impl.conn.AbstractPoolEntry getPoolEntry();
Paul Duffin03a95652017-07-14 13:48:42 +01002883 }
2884
Tor Norbyebd65b232019-01-07 18:09:28 -08002885 @Deprecated public class ConnPoolByRoute extends org.apache.http.impl.conn.tsccm.AbstractConnPool {
2886 ctor @Deprecated public ConnPoolByRoute(org.apache.http.conn.ClientConnectionOperator, org.apache.http.params.HttpParams);
2887 method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry createEntry(org.apache.http.impl.conn.tsccm.RouteSpecificPool, org.apache.http.conn.ClientConnectionOperator);
2888 method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> createFreeConnQueue();
2889 method @Deprecated protected java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.impl.conn.tsccm.RouteSpecificPool> createRouteToPoolMap();
2890 method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> createWaitingThreadQueue();
2891 method @Deprecated public void deleteClosedConnections();
2892 method @Deprecated protected void deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2893 method @Deprecated protected void deleteLeastUsedEntry();
2894 method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, long, java.util.concurrent.TimeUnit);
2895 method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2896 method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntryBlocking(org.apache.http.conn.routing.HttpRoute, Object, long, java.util.concurrent.TimeUnit, org.apache.http.impl.conn.tsccm.WaitingThreadAborter) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
2897 method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getFreeEntry(org.apache.http.impl.conn.tsccm.RouteSpecificPool, Object);
2898 method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool getRoutePool(org.apache.http.conn.routing.HttpRoute, boolean);
2899 method @Deprecated protected void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2900 method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool newRouteSpecificPool(org.apache.http.conn.routing.HttpRoute);
2901 method @Deprecated protected org.apache.http.impl.conn.tsccm.WaitingThread newWaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.conn.tsccm.RouteSpecificPool);
2902 method @Deprecated protected void notifyWaitingThread(org.apache.http.impl.conn.tsccm.RouteSpecificPool);
2903 method @Deprecated public org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.apache.http.conn.routing.HttpRoute, Object);
2904 field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeConnections;
2905 field @Deprecated protected final int maxTotalConnections;
2906 field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator operator;
2907 field @Deprecated protected final java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.impl.conn.tsccm.RouteSpecificPool> routeToPool;
2908 field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waitingThreads;
Paul Duffin03a95652017-07-14 13:48:42 +01002909 }
2910
Tor Norbyebd65b232019-01-07 18:09:28 -08002911 @Deprecated public interface PoolEntryRequest {
2912 method @Deprecated public void abortRequest();
2913 method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry getPoolEntry(long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
Paul Duffin03a95652017-07-14 13:48:42 +01002914 }
2915
Tor Norbyebd65b232019-01-07 18:09:28 -08002916 @Deprecated public interface RefQueueHandler {
2917 method @Deprecated public void handleReference(java.lang.ref.Reference<?>);
Paul Duffin03a95652017-07-14 13:48:42 +01002918 }
2919
Tor Norbyebd65b232019-01-07 18:09:28 -08002920 @Deprecated public class RefQueueWorker implements java.lang.Runnable {
2921 ctor @Deprecated public RefQueueWorker(java.lang.ref.ReferenceQueue<?>, org.apache.http.impl.conn.tsccm.RefQueueHandler);
2922 method @Deprecated public void run();
2923 method @Deprecated public void shutdown();
2924 field @Deprecated protected final org.apache.http.impl.conn.tsccm.RefQueueHandler refHandler;
2925 field @Deprecated protected final java.lang.ref.ReferenceQueue<?> refQueue;
2926 field @Deprecated protected volatile Thread workerThread;
Paul Duffin03a95652017-07-14 13:48:42 +01002927 }
2928
Tor Norbyebd65b232019-01-07 18:09:28 -08002929 @Deprecated public class RouteSpecificPool {
2930 ctor @Deprecated public RouteSpecificPool(org.apache.http.conn.routing.HttpRoute, int);
2931 method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry allocEntry(Object);
2932 method @Deprecated public void createdEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2933 method @Deprecated public boolean deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2934 method @Deprecated public void dropEntry();
2935 method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2936 method @Deprecated public int getCapacity();
2937 method @Deprecated public final int getEntryCount();
2938 method @Deprecated public final int getMaxEntries();
2939 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2940 method @Deprecated public boolean hasThread();
2941 method @Deprecated public boolean isUnused();
2942 method @Deprecated public org.apache.http.impl.conn.tsccm.WaitingThread nextThread();
2943 method @Deprecated public void queueThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2944 method @Deprecated public void removeThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2945 field @Deprecated protected final java.util.LinkedList<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeEntries;
2946 field @Deprecated protected final int maxEntries;
2947 field @Deprecated protected int numEntries;
2948 field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2949 field @Deprecated protected final java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waitingThreads;
Paul Duffin03a95652017-07-14 13:48:42 +01002950 }
2951
Tor Norbyebd65b232019-01-07 18:09:28 -08002952 @Deprecated public class ThreadSafeClientConnManager implements org.apache.http.conn.ClientConnectionManager {
2953 ctor @Deprecated public ThreadSafeClientConnManager(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
2954 method @Deprecated public void closeExpiredConnections();
2955 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2956 method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
2957 method @Deprecated protected org.apache.http.impl.conn.tsccm.AbstractConnPool createConnectionPool(org.apache.http.params.HttpParams);
2958 method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2959 method @Deprecated public int getConnectionsInPool();
2960 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2961 method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
2962 method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
2963 method @Deprecated public void shutdown();
2964 field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2965 field @Deprecated protected final org.apache.http.impl.conn.tsccm.AbstractConnPool connectionPool;
2966 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
Paul Duffin03a95652017-07-14 13:48:42 +01002967 }
2968
Tor Norbyebd65b232019-01-07 18:09:28 -08002969 @Deprecated public class WaitingThread {
2970 ctor @Deprecated public WaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.conn.tsccm.RouteSpecificPool);
2971 method @Deprecated public boolean await(java.util.Date) throws java.lang.InterruptedException;
2972 method @Deprecated public final java.util.concurrent.locks.Condition getCondition();
2973 method @Deprecated public final org.apache.http.impl.conn.tsccm.RouteSpecificPool getPool();
2974 method @Deprecated public final Thread getThread();
2975 method @Deprecated public void interrupt();
2976 method @Deprecated public void wakeup();
Paul Duffin03a95652017-07-14 13:48:42 +01002977 }
2978
Tor Norbyebd65b232019-01-07 18:09:28 -08002979 @Deprecated public class WaitingThreadAborter {
2980 ctor @Deprecated public WaitingThreadAborter();
2981 method @Deprecated public void abort();
2982 method @Deprecated public void setWaitingThread(org.apache.http.impl.conn.tsccm.WaitingThread);
Paul Duffin03a95652017-07-14 13:48:42 +01002983 }
2984
2985}
2986
2987package org.apache.http.impl.cookie {
2988
Tor Norbyebd65b232019-01-07 18:09:28 -08002989 @Deprecated public abstract class AbstractCookieAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
2990 ctor @Deprecated public AbstractCookieAttributeHandler();
2991 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
2992 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01002993 }
2994
Tor Norbyebd65b232019-01-07 18:09:28 -08002995 @Deprecated public abstract class AbstractCookieSpec implements org.apache.http.cookie.CookieSpec {
2996 ctor @Deprecated public AbstractCookieSpec();
2997 method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler findAttribHandler(String);
2998 method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler getAttribHandler(String);
2999 method @Deprecated protected java.util.Collection<org.apache.http.cookie.CookieAttributeHandler> getAttribHandlers();
3000 method @Deprecated public void registerAttribHandler(String, org.apache.http.cookie.CookieAttributeHandler);
Paul Duffin03a95652017-07-14 13:48:42 +01003001 }
3002
Tor Norbyebd65b232019-01-07 18:09:28 -08003003 @Deprecated public class BasicClientCookie implements org.apache.http.cookie.ClientCookie java.lang.Cloneable org.apache.http.cookie.SetCookie {
3004 ctor @Deprecated public BasicClientCookie(String, String);
3005 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3006 method @Deprecated public boolean containsAttribute(String);
3007 method @Deprecated public String getAttribute(String);
3008 method @Deprecated public String getComment();
3009 method @Deprecated public String getCommentURL();
3010 method @Deprecated public String getDomain();
3011 method @Deprecated public java.util.Date getExpiryDate();
3012 method @Deprecated public String getName();
3013 method @Deprecated public String getPath();
3014 method @Deprecated public int[] getPorts();
3015 method @Deprecated public String getValue();
3016 method @Deprecated public int getVersion();
3017 method @Deprecated public boolean isExpired(java.util.Date);
3018 method @Deprecated public boolean isPersistent();
3019 method @Deprecated public boolean isSecure();
3020 method @Deprecated public void setAttribute(String, String);
3021 method @Deprecated public void setComment(String);
3022 method @Deprecated public void setDomain(String);
3023 method @Deprecated public void setExpiryDate(java.util.Date);
3024 method @Deprecated public void setPath(String);
3025 method @Deprecated public void setSecure(boolean);
3026 method @Deprecated public void setValue(String);
3027 method @Deprecated public void setVersion(int);
Paul Duffin03a95652017-07-14 13:48:42 +01003028 }
3029
Tor Norbyebd65b232019-01-07 18:09:28 -08003030 @Deprecated public class BasicClientCookie2 extends org.apache.http.impl.cookie.BasicClientCookie implements org.apache.http.cookie.SetCookie2 {
3031 ctor @Deprecated public BasicClientCookie2(String, String);
3032 method @Deprecated public void setCommentURL(String);
3033 method @Deprecated public void setDiscard(boolean);
3034 method @Deprecated public void setPorts(int[]);
Paul Duffin03a95652017-07-14 13:48:42 +01003035 }
3036
Tor Norbyebd65b232019-01-07 18:09:28 -08003037 @Deprecated public class BasicCommentHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3038 ctor @Deprecated public BasicCommentHandler();
3039 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003040 }
3041
Tor Norbyebd65b232019-01-07 18:09:28 -08003042 @Deprecated public class BasicDomainHandler implements org.apache.http.cookie.CookieAttributeHandler {
3043 ctor @Deprecated public BasicDomainHandler();
3044 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3045 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3046 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003047 }
3048
Tor Norbyebd65b232019-01-07 18:09:28 -08003049 @Deprecated public class BasicExpiresHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3050 ctor @Deprecated public BasicExpiresHandler(String[]);
3051 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003052 }
3053
Tor Norbyebd65b232019-01-07 18:09:28 -08003054 @Deprecated public class BasicMaxAgeHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3055 ctor @Deprecated public BasicMaxAgeHandler();
3056 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003057 }
3058
Tor Norbyebd65b232019-01-07 18:09:28 -08003059 @Deprecated public class BasicPathHandler implements org.apache.http.cookie.CookieAttributeHandler {
3060 ctor @Deprecated public BasicPathHandler();
3061 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3062 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3063 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003064 }
3065
Tor Norbyebd65b232019-01-07 18:09:28 -08003066 @Deprecated public class BasicSecureHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3067 ctor @Deprecated public BasicSecureHandler();
3068 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003069 }
3070
Tor Norbyebd65b232019-01-07 18:09:28 -08003071 @Deprecated public class BestMatchSpec implements org.apache.http.cookie.CookieSpec {
3072 ctor @Deprecated public BestMatchSpec(String[], boolean);
3073 ctor @Deprecated public BestMatchSpec();
3074 method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3075 method @Deprecated public int getVersion();
3076 method @Deprecated public org.apache.http.Header getVersionHeader();
3077 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3078 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3079 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003080 }
3081
Tor Norbyebd65b232019-01-07 18:09:28 -08003082 @Deprecated public class BestMatchSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3083 ctor @Deprecated public BestMatchSpecFactory();
3084 method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01003085 }
3086
Tor Norbyebd65b232019-01-07 18:09:28 -08003087 @Deprecated public class BrowserCompatSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3088 ctor @Deprecated public BrowserCompatSpec(String[]);
3089 ctor @Deprecated public BrowserCompatSpec();
3090 method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3091 method @Deprecated public int getVersion();
3092 method @Deprecated public org.apache.http.Header getVersionHeader();
3093 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3094 field @Deprecated protected static final String[] DATE_PATTERNS;
Paul Duffin03a95652017-07-14 13:48:42 +01003095 }
3096
Tor Norbyebd65b232019-01-07 18:09:28 -08003097 @Deprecated public class BrowserCompatSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3098 ctor @Deprecated public BrowserCompatSpecFactory();
3099 method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01003100 }
3101
Tor Norbyebd65b232019-01-07 18:09:28 -08003102 @Deprecated public abstract class CookieSpecBase extends org.apache.http.impl.cookie.AbstractCookieSpec {
3103 ctor @Deprecated public CookieSpecBase();
3104 method @Deprecated protected static String getDefaultDomain(org.apache.http.cookie.CookieOrigin);
3105 method @Deprecated protected static String getDefaultPath(org.apache.http.cookie.CookieOrigin);
3106 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3107 method @Deprecated protected java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.HeaderElement[], org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3108 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003109 }
3110
Tor Norbyebd65b232019-01-07 18:09:28 -08003111 @Deprecated public class DateParseException extends java.lang.Exception {
3112 ctor @Deprecated public DateParseException();
3113 ctor @Deprecated public DateParseException(String);
Paul Duffin03a95652017-07-14 13:48:42 +01003114 }
3115
Tor Norbyebd65b232019-01-07 18:09:28 -08003116 @Deprecated public final class DateUtils {
3117 method @Deprecated public static String formatDate(java.util.Date);
3118 method @Deprecated public static String formatDate(java.util.Date, String);
3119 method @Deprecated public static java.util.Date parseDate(String) throws org.apache.http.impl.cookie.DateParseException;
3120 method @Deprecated public static java.util.Date parseDate(String, String[]) throws org.apache.http.impl.cookie.DateParseException;
3121 method @Deprecated public static java.util.Date parseDate(String, String[], java.util.Date) throws org.apache.http.impl.cookie.DateParseException;
3122 field @Deprecated public static final java.util.TimeZone GMT;
3123 field @Deprecated public static final String PATTERN_ASCTIME = "EEE MMM d HH:mm:ss yyyy";
3124 field @Deprecated public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
3125 field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
Paul Duffin03a95652017-07-14 13:48:42 +01003126 }
3127
Tor Norbyebd65b232019-01-07 18:09:28 -08003128 @Deprecated public class NetscapeDomainHandler extends org.apache.http.impl.cookie.BasicDomainHandler {
3129 ctor @Deprecated public NetscapeDomainHandler();
Paul Duffin03a95652017-07-14 13:48:42 +01003130 }
3131
Tor Norbyebd65b232019-01-07 18:09:28 -08003132 @Deprecated public class NetscapeDraftHeaderParser {
3133 ctor @Deprecated public NetscapeDraftHeaderParser();
3134 method @Deprecated public org.apache.http.HeaderElement parseHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3135 field @Deprecated public static final org.apache.http.impl.cookie.NetscapeDraftHeaderParser DEFAULT;
Paul Duffin03a95652017-07-14 13:48:42 +01003136 }
3137
Tor Norbyebd65b232019-01-07 18:09:28 -08003138 @Deprecated public class NetscapeDraftSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3139 ctor @Deprecated public NetscapeDraftSpec(String[]);
3140 ctor @Deprecated public NetscapeDraftSpec();
3141 method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3142 method @Deprecated public int getVersion();
3143 method @Deprecated public org.apache.http.Header getVersionHeader();
3144 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3145 field @Deprecated protected static final String EXPIRES_PATTERN = "EEE, dd-MMM-yyyy HH:mm:ss z";
Paul Duffin03a95652017-07-14 13:48:42 +01003146 }
3147
Tor Norbyebd65b232019-01-07 18:09:28 -08003148 @Deprecated public class NetscapeDraftSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3149 ctor @Deprecated public NetscapeDraftSpecFactory();
3150 method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01003151 }
3152
Tor Norbyebd65b232019-01-07 18:09:28 -08003153 @Deprecated public class RFC2109DomainHandler implements org.apache.http.cookie.CookieAttributeHandler {
3154 ctor @Deprecated public RFC2109DomainHandler();
3155 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3156 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3157 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003158 }
3159
Tor Norbyebd65b232019-01-07 18:09:28 -08003160 @Deprecated public class RFC2109Spec extends org.apache.http.impl.cookie.CookieSpecBase {
3161 ctor @Deprecated public RFC2109Spec(String[], boolean);
3162 ctor @Deprecated public RFC2109Spec();
3163 method @Deprecated protected void formatCookieAsVer(org.apache.http.util.CharArrayBuffer, org.apache.http.cookie.Cookie, int);
3164 method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3165 method @Deprecated protected void formatParamAsVer(org.apache.http.util.CharArrayBuffer, String, String, int);
3166 method @Deprecated public int getVersion();
3167 method @Deprecated public org.apache.http.Header getVersionHeader();
3168 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Header, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003169 }
3170
Tor Norbyebd65b232019-01-07 18:09:28 -08003171 @Deprecated public class RFC2109SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3172 ctor @Deprecated public RFC2109SpecFactory();
3173 method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01003174 }
3175
Tor Norbyebd65b232019-01-07 18:09:28 -08003176 @Deprecated public class RFC2109VersionHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3177 ctor @Deprecated public RFC2109VersionHandler();
3178 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003179 }
3180
Tor Norbyebd65b232019-01-07 18:09:28 -08003181 @Deprecated public class RFC2965CommentUrlAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3182 ctor @Deprecated public RFC2965CommentUrlAttributeHandler();
3183 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3184 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3185 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003186 }
3187
Tor Norbyebd65b232019-01-07 18:09:28 -08003188 @Deprecated public class RFC2965DiscardAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3189 ctor @Deprecated public RFC2965DiscardAttributeHandler();
3190 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3191 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3192 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003193 }
3194
Tor Norbyebd65b232019-01-07 18:09:28 -08003195 @Deprecated public class RFC2965DomainAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3196 ctor @Deprecated public RFC2965DomainAttributeHandler();
3197 method @Deprecated public boolean domainMatch(String, String);
3198 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3199 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3200 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003201 }
3202
Tor Norbyebd65b232019-01-07 18:09:28 -08003203 @Deprecated public class RFC2965PortAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3204 ctor @Deprecated public RFC2965PortAttributeHandler();
3205 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3206 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3207 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003208 }
3209
Tor Norbyebd65b232019-01-07 18:09:28 -08003210 @Deprecated public class RFC2965Spec extends org.apache.http.impl.cookie.RFC2109Spec {
3211 ctor @Deprecated public RFC2965Spec();
3212 ctor @Deprecated public RFC2965Spec(String[], boolean);
Paul Duffin03a95652017-07-14 13:48:42 +01003213 }
3214
Tor Norbyebd65b232019-01-07 18:09:28 -08003215 @Deprecated public class RFC2965SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3216 ctor @Deprecated public RFC2965SpecFactory();
3217 method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01003218 }
3219
Tor Norbyebd65b232019-01-07 18:09:28 -08003220 @Deprecated public class RFC2965VersionAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3221 ctor @Deprecated public RFC2965VersionAttributeHandler();
3222 method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3223 method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3224 method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
Paul Duffin03a95652017-07-14 13:48:42 +01003225 }
3226
3227}
3228
3229package org.apache.http.impl.entity {
3230
Tor Norbyebd65b232019-01-07 18:09:28 -08003231 @Deprecated public class EntityDeserializer {
3232 ctor @Deprecated public EntityDeserializer(org.apache.http.entity.ContentLengthStrategy);
3233 method @Deprecated public org.apache.http.HttpEntity deserialize(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
3234 method @Deprecated protected org.apache.http.entity.BasicHttpEntity doDeserialize(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003235 }
3236
Tor Norbyebd65b232019-01-07 18:09:28 -08003237 @Deprecated public class EntitySerializer {
3238 ctor @Deprecated public EntitySerializer(org.apache.http.entity.ContentLengthStrategy);
3239 method @Deprecated protected java.io.OutputStream doSerialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
3240 method @Deprecated public void serialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.HttpMessage, org.apache.http.HttpEntity) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003241 }
3242
Tor Norbyebd65b232019-01-07 18:09:28 -08003243 @Deprecated public class LaxContentLengthStrategy implements org.apache.http.entity.ContentLengthStrategy {
3244 ctor @Deprecated public LaxContentLengthStrategy();
3245 method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
Paul Duffin03a95652017-07-14 13:48:42 +01003246 }
3247
Tor Norbyebd65b232019-01-07 18:09:28 -08003248 @Deprecated public class StrictContentLengthStrategy implements org.apache.http.entity.ContentLengthStrategy {
3249 ctor @Deprecated public StrictContentLengthStrategy();
3250 method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
Paul Duffin03a95652017-07-14 13:48:42 +01003251 }
3252
3253}
3254
3255package org.apache.http.impl.io {
3256
Tor Norbyebd65b232019-01-07 18:09:28 -08003257 @Deprecated public abstract class AbstractMessageParser implements org.apache.http.io.HttpMessageParser {
3258 ctor @Deprecated public AbstractMessageParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.params.HttpParams);
3259 method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException, java.io.IOException;
3260 method @Deprecated protected abstract org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException, org.apache.http.ParseException;
3261 method @Deprecated public static org.apache.http.Header[] parseHeaders(org.apache.http.io.SessionInputBuffer, int, int, org.apache.http.message.LineParser) throws org.apache.http.HttpException, java.io.IOException;
3262 field @Deprecated protected final org.apache.http.message.LineParser lineParser;
Paul Duffin03a95652017-07-14 13:48:42 +01003263 }
3264
Tor Norbyebd65b232019-01-07 18:09:28 -08003265 @Deprecated public abstract class AbstractMessageWriter implements org.apache.http.io.HttpMessageWriter {
3266 ctor @Deprecated public AbstractMessageWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
3267 method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
3268 method @Deprecated protected abstract void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
3269 field @Deprecated protected final org.apache.http.util.CharArrayBuffer lineBuf;
3270 field @Deprecated protected final org.apache.http.message.LineFormatter lineFormatter;
3271 field @Deprecated protected final org.apache.http.io.SessionOutputBuffer sessionBuffer;
Paul Duffin03a95652017-07-14 13:48:42 +01003272 }
3273
Tor Norbyebd65b232019-01-07 18:09:28 -08003274 @Deprecated public abstract class AbstractSessionInputBuffer implements org.apache.http.io.SessionInputBuffer {
3275 ctor @Deprecated public AbstractSessionInputBuffer();
3276 method @Deprecated protected int fillBuffer() throws java.io.IOException;
3277 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3278 method @Deprecated protected boolean hasBufferedData();
3279 method @Deprecated protected void init(java.io.InputStream, int, org.apache.http.params.HttpParams);
3280 method @Deprecated public int read() throws java.io.IOException;
3281 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3282 method @Deprecated public int read(byte[]) throws java.io.IOException;
3283 method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
3284 method @Deprecated public String readLine() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003285 }
3286
Tor Norbyebd65b232019-01-07 18:09:28 -08003287 @Deprecated public abstract class AbstractSessionOutputBuffer implements org.apache.http.io.SessionOutputBuffer {
3288 ctor @Deprecated public AbstractSessionOutputBuffer();
3289 method @Deprecated public void flush() throws java.io.IOException;
3290 method @Deprecated protected void flushBuffer() throws java.io.IOException;
3291 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3292 method @Deprecated protected void init(java.io.OutputStream, int, org.apache.http.params.HttpParams);
3293 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3294 method @Deprecated public void write(byte[]) throws java.io.IOException;
3295 method @Deprecated public void write(int) throws java.io.IOException;
3296 method @Deprecated public void writeLine(String) throws java.io.IOException;
3297 method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003298 }
3299
Tor Norbyebd65b232019-01-07 18:09:28 -08003300 @Deprecated public class ChunkedInputStream extends java.io.InputStream {
3301 ctor @Deprecated public ChunkedInputStream(org.apache.http.io.SessionInputBuffer);
3302 method @Deprecated public org.apache.http.Header[] getFooters();
3303 method @Deprecated public int read() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003304 }
3305
Tor Norbyebd65b232019-01-07 18:09:28 -08003306 @Deprecated public class ChunkedOutputStream extends java.io.OutputStream {
3307 ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer, int) throws java.io.IOException;
3308 ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer) throws java.io.IOException;
3309 method @Deprecated public void finish() throws java.io.IOException;
3310 method @Deprecated protected void flushCache() throws java.io.IOException;
3311 method @Deprecated protected void flushCacheWithAppend(byte[], int, int) throws java.io.IOException;
3312 method @Deprecated public void write(int) throws java.io.IOException;
3313 method @Deprecated protected void writeClosingChunk() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003314 }
3315
Tor Norbyebd65b232019-01-07 18:09:28 -08003316 @Deprecated public class ContentLengthInputStream extends java.io.InputStream {
3317 ctor @Deprecated public ContentLengthInputStream(org.apache.http.io.SessionInputBuffer, long);
3318 method @Deprecated public int read() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003319 }
3320
Tor Norbyebd65b232019-01-07 18:09:28 -08003321 @Deprecated public class ContentLengthOutputStream extends java.io.OutputStream {
3322 ctor @Deprecated public ContentLengthOutputStream(org.apache.http.io.SessionOutputBuffer, long);
3323 method @Deprecated public void write(int) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003324 }
3325
Tor Norbyebd65b232019-01-07 18:09:28 -08003326 @Deprecated public class HttpRequestParser extends org.apache.http.impl.io.AbstractMessageParser {
3327 ctor @Deprecated public HttpRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpRequestFactory, org.apache.http.params.HttpParams);
3328 method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException, org.apache.http.ParseException;
Paul Duffin03a95652017-07-14 13:48:42 +01003329 }
3330
Tor Norbyebd65b232019-01-07 18:09:28 -08003331 @Deprecated public class HttpRequestWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3332 ctor @Deprecated public HttpRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
3333 method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003334 }
3335
Tor Norbyebd65b232019-01-07 18:09:28 -08003336 @Deprecated public class HttpResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
3337 ctor @Deprecated public HttpResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
3338 method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException, org.apache.http.ParseException;
Paul Duffin03a95652017-07-14 13:48:42 +01003339 }
3340
Tor Norbyebd65b232019-01-07 18:09:28 -08003341 @Deprecated public class HttpResponseWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3342 ctor @Deprecated public HttpResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
3343 method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003344 }
3345
Tor Norbyebd65b232019-01-07 18:09:28 -08003346 @Deprecated public class HttpTransportMetricsImpl implements org.apache.http.io.HttpTransportMetrics {
3347 ctor @Deprecated public HttpTransportMetricsImpl();
3348 method @Deprecated public long getBytesTransferred();
3349 method @Deprecated public void incrementBytesTransferred(long);
3350 method @Deprecated public void reset();
3351 method @Deprecated public void setBytesTransferred(long);
Paul Duffin03a95652017-07-14 13:48:42 +01003352 }
3353
Tor Norbyebd65b232019-01-07 18:09:28 -08003354 @Deprecated public class IdentityInputStream extends java.io.InputStream {
3355 ctor @Deprecated public IdentityInputStream(org.apache.http.io.SessionInputBuffer);
3356 method @Deprecated public int read() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003357 }
3358
Tor Norbyebd65b232019-01-07 18:09:28 -08003359 @Deprecated public class IdentityOutputStream extends java.io.OutputStream {
3360 ctor @Deprecated public IdentityOutputStream(org.apache.http.io.SessionOutputBuffer);
3361 method @Deprecated public void write(int) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003362 }
3363
Tor Norbyebd65b232019-01-07 18:09:28 -08003364 @Deprecated public class SocketInputBuffer extends org.apache.http.impl.io.AbstractSessionInputBuffer {
3365 ctor @Deprecated public SocketInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
3366 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3367 method @Deprecated public boolean isStale() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003368 }
3369
Tor Norbyebd65b232019-01-07 18:09:28 -08003370 @Deprecated public class SocketOutputBuffer extends org.apache.http.impl.io.AbstractSessionOutputBuffer {
3371 ctor @Deprecated public SocketOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003372 }
3373
3374}
3375
3376package org.apache.http.io {
3377
Tor Norbyebd65b232019-01-07 18:09:28 -08003378 @Deprecated public interface HttpMessageParser {
3379 method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003380 }
3381
Tor Norbyebd65b232019-01-07 18:09:28 -08003382 @Deprecated public interface HttpMessageWriter {
3383 method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003384 }
3385
Tor Norbyebd65b232019-01-07 18:09:28 -08003386 @Deprecated public interface HttpTransportMetrics {
3387 method @Deprecated public long getBytesTransferred();
3388 method @Deprecated public void reset();
Paul Duffin03a95652017-07-14 13:48:42 +01003389 }
3390
Tor Norbyebd65b232019-01-07 18:09:28 -08003391 @Deprecated public interface SessionInputBuffer {
3392 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3393 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3394 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3395 method @Deprecated public int read(byte[]) throws java.io.IOException;
3396 method @Deprecated public int read() throws java.io.IOException;
3397 method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
3398 method @Deprecated public String readLine() throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003399 }
3400
Tor Norbyebd65b232019-01-07 18:09:28 -08003401 @Deprecated public interface SessionOutputBuffer {
3402 method @Deprecated public void flush() throws java.io.IOException;
3403 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3404 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3405 method @Deprecated public void write(byte[]) throws java.io.IOException;
3406 method @Deprecated public void write(int) throws java.io.IOException;
3407 method @Deprecated public void writeLine(String) throws java.io.IOException;
3408 method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003409 }
3410
3411}
3412
3413package org.apache.http.message {
3414
Tor Norbyebd65b232019-01-07 18:09:28 -08003415 @Deprecated public abstract class AbstractHttpMessage implements org.apache.http.HttpMessage {
3416 ctor @Deprecated protected AbstractHttpMessage(org.apache.http.params.HttpParams);
3417 ctor @Deprecated protected AbstractHttpMessage();
3418 method @Deprecated public void addHeader(org.apache.http.Header);
3419 method @Deprecated public void addHeader(String, String);
3420 method @Deprecated public boolean containsHeader(String);
3421 method @Deprecated public org.apache.http.Header[] getAllHeaders();
3422 method @Deprecated public org.apache.http.Header getFirstHeader(String);
3423 method @Deprecated public org.apache.http.Header[] getHeaders(String);
3424 method @Deprecated public org.apache.http.Header getLastHeader(String);
3425 method @Deprecated public org.apache.http.params.HttpParams getParams();
3426 method @Deprecated public org.apache.http.HeaderIterator headerIterator();
3427 method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
3428 method @Deprecated public void removeHeader(org.apache.http.Header);
3429 method @Deprecated public void removeHeaders(String);
3430 method @Deprecated public void setHeader(org.apache.http.Header);
3431 method @Deprecated public void setHeader(String, String);
3432 method @Deprecated public void setHeaders(org.apache.http.Header[]);
3433 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3434 field @Deprecated protected org.apache.http.message.HeaderGroup headergroup;
3435 field @Deprecated protected org.apache.http.params.HttpParams params;
Paul Duffin03a95652017-07-14 13:48:42 +01003436 }
3437
Tor Norbyebd65b232019-01-07 18:09:28 -08003438 @Deprecated public class BasicHeader implements java.lang.Cloneable org.apache.http.Header {
3439 ctor @Deprecated public BasicHeader(String, String);
3440 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3441 method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
3442 method @Deprecated public String getName();
3443 method @Deprecated public String getValue();
Paul Duffin03a95652017-07-14 13:48:42 +01003444 }
3445
Tor Norbyebd65b232019-01-07 18:09:28 -08003446 @Deprecated public class BasicHeaderElement implements java.lang.Cloneable org.apache.http.HeaderElement {
3447 ctor @Deprecated public BasicHeaderElement(String, String, org.apache.http.NameValuePair[]);
3448 ctor @Deprecated public BasicHeaderElement(String, String);
3449 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3450 method @Deprecated public String getName();
3451 method @Deprecated public org.apache.http.NameValuePair getParameter(int);
3452 method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
3453 method @Deprecated public int getParameterCount();
3454 method @Deprecated public org.apache.http.NameValuePair[] getParameters();
3455 method @Deprecated public String getValue();
Paul Duffin03a95652017-07-14 13:48:42 +01003456 }
3457
Tor Norbyebd65b232019-01-07 18:09:28 -08003458 @Deprecated public class BasicHeaderElementIterator implements org.apache.http.HeaderElementIterator {
3459 ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator, org.apache.http.message.HeaderValueParser);
3460 ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator);
3461 method @Deprecated public boolean hasNext();
3462 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3463 method @Deprecated public org.apache.http.HeaderElement nextElement() throws java.util.NoSuchElementException;
3464 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
Paul Duffin03a95652017-07-14 13:48:42 +01003465 }
3466
Tor Norbyebd65b232019-01-07 18:09:28 -08003467 @Deprecated public class BasicHeaderIterator implements org.apache.http.HeaderIterator {
3468 ctor @Deprecated public BasicHeaderIterator(org.apache.http.Header[], String);
3469 method @Deprecated protected boolean filterHeader(int);
3470 method @Deprecated protected int findNext(int);
3471 method @Deprecated public boolean hasNext();
3472 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3473 method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementException;
3474 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3475 field @Deprecated protected final org.apache.http.Header[] allHeaders;
3476 field @Deprecated protected int currentIndex;
3477 field @Deprecated protected String headerName;
Paul Duffin03a95652017-07-14 13:48:42 +01003478 }
3479
Tor Norbyebd65b232019-01-07 18:09:28 -08003480 @Deprecated public class BasicHeaderValueFormatter implements org.apache.http.message.HeaderValueFormatter {
3481 ctor @Deprecated public BasicHeaderValueFormatter();
3482 method @Deprecated protected void doFormatValue(org.apache.http.util.CharArrayBuffer, String, boolean);
3483 method @Deprecated protected int estimateElementsLen(org.apache.http.HeaderElement[]);
3484 method @Deprecated protected int estimateHeaderElementLen(org.apache.http.HeaderElement);
3485 method @Deprecated protected int estimateNameValuePairLen(org.apache.http.NameValuePair);
3486 method @Deprecated protected int estimateParametersLen(org.apache.http.NameValuePair[]);
3487 method @Deprecated public static final String formatElements(org.apache.http.HeaderElement[], boolean, org.apache.http.message.HeaderValueFormatter);
3488 method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement[], boolean);
3489 method @Deprecated public static final String formatHeaderElement(org.apache.http.HeaderElement, boolean, org.apache.http.message.HeaderValueFormatter);
3490 method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement, boolean);
3491 method @Deprecated public static final String formatNameValuePair(org.apache.http.NameValuePair, boolean, org.apache.http.message.HeaderValueFormatter);
3492 method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair, boolean);
3493 method @Deprecated public static final String formatParameters(org.apache.http.NameValuePair[], boolean, org.apache.http.message.HeaderValueFormatter);
3494 method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair[], boolean);
3495 method @Deprecated protected boolean isSeparator(char);
3496 method @Deprecated protected boolean isUnsafe(char);
3497 field @Deprecated public static final org.apache.http.message.BasicHeaderValueFormatter DEFAULT;
3498 field @Deprecated public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
3499 field @Deprecated public static final String UNSAFE_CHARS = "\"\\";
Paul Duffin03a95652017-07-14 13:48:42 +01003500 }
3501
Tor Norbyebd65b232019-01-07 18:09:28 -08003502 @Deprecated public class BasicHeaderValueParser implements org.apache.http.message.HeaderValueParser {
3503 ctor @Deprecated public BasicHeaderValueParser();
3504 method @Deprecated protected org.apache.http.HeaderElement createHeaderElement(String, String, org.apache.http.NameValuePair[]);
3505 method @Deprecated protected org.apache.http.NameValuePair createNameValuePair(String, String);
3506 method @Deprecated public static final org.apache.http.HeaderElement[] parseElements(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3507 method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3508 method @Deprecated public static final org.apache.http.HeaderElement parseHeaderElement(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3509 method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3510 method @Deprecated public static final org.apache.http.NameValuePair parseNameValuePair(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3511 method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3512 method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor, char[]);
3513 method @Deprecated public static final org.apache.http.NameValuePair[] parseParameters(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3514 method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3515 field @Deprecated public static final org.apache.http.message.BasicHeaderValueParser DEFAULT;
Paul Duffin03a95652017-07-14 13:48:42 +01003516 }
3517
Tor Norbyebd65b232019-01-07 18:09:28 -08003518 @Deprecated public class BasicHttpEntityEnclosingRequest extends org.apache.http.message.BasicHttpRequest implements org.apache.http.HttpEntityEnclosingRequest {
3519 ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String);
3520 ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String, org.apache.http.ProtocolVersion);
3521 ctor @Deprecated public BasicHttpEntityEnclosingRequest(org.apache.http.RequestLine);
3522 method @Deprecated public boolean expectContinue();
3523 method @Deprecated public org.apache.http.HttpEntity getEntity();
3524 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
Paul Duffin03a95652017-07-14 13:48:42 +01003525 }
3526
Tor Norbyebd65b232019-01-07 18:09:28 -08003527 @Deprecated public class BasicHttpRequest extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.HttpRequest {
3528 ctor @Deprecated public BasicHttpRequest(String, String);
3529 ctor @Deprecated public BasicHttpRequest(String, String, org.apache.http.ProtocolVersion);
3530 ctor @Deprecated public BasicHttpRequest(org.apache.http.RequestLine);
3531 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3532 method @Deprecated public org.apache.http.RequestLine getRequestLine();
Paul Duffin03a95652017-07-14 13:48:42 +01003533 }
3534
Tor Norbyebd65b232019-01-07 18:09:28 -08003535 @Deprecated public class BasicHttpResponse extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.HttpResponse {
3536 ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine, org.apache.http.ReasonPhraseCatalog, java.util.Locale);
3537 ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine);
3538 ctor @Deprecated public BasicHttpResponse(org.apache.http.ProtocolVersion, int, String);
3539 method @Deprecated public org.apache.http.HttpEntity getEntity();
3540 method @Deprecated public java.util.Locale getLocale();
3541 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3542 method @Deprecated protected String getReason(int);
3543 method @Deprecated public org.apache.http.StatusLine getStatusLine();
3544 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3545 method @Deprecated public void setLocale(java.util.Locale);
3546 method @Deprecated public void setReasonPhrase(String);
3547 method @Deprecated public void setStatusCode(int);
3548 method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
3549 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
3550 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
Paul Duffin03a95652017-07-14 13:48:42 +01003551 }
3552
Tor Norbyebd65b232019-01-07 18:09:28 -08003553 @Deprecated public class BasicLineFormatter implements org.apache.http.message.LineFormatter {
3554 ctor @Deprecated public BasicLineFormatter();
3555 method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion);
3556 method @Deprecated protected void doFormatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
3557 method @Deprecated protected void doFormatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
3558 method @Deprecated protected void doFormatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
3559 method @Deprecated protected int estimateProtocolVersionLen(org.apache.http.ProtocolVersion);
3560 method @Deprecated public static final String formatHeader(org.apache.http.Header, org.apache.http.message.LineFormatter);
3561 method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
3562 method @Deprecated public static final String formatProtocolVersion(org.apache.http.ProtocolVersion, org.apache.http.message.LineFormatter);
3563 method @Deprecated public static final String formatRequestLine(org.apache.http.RequestLine, org.apache.http.message.LineFormatter);
3564 method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
3565 method @Deprecated public static final String formatStatusLine(org.apache.http.StatusLine, org.apache.http.message.LineFormatter);
3566 method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
3567 method @Deprecated protected org.apache.http.util.CharArrayBuffer initBuffer(org.apache.http.util.CharArrayBuffer);
3568 field @Deprecated public static final org.apache.http.message.BasicLineFormatter DEFAULT;
Paul Duffin03a95652017-07-14 13:48:42 +01003569 }
3570
Tor Norbyebd65b232019-01-07 18:09:28 -08003571 @Deprecated public class BasicLineParser implements org.apache.http.message.LineParser {
3572 ctor @Deprecated public BasicLineParser(org.apache.http.ProtocolVersion);
3573 ctor @Deprecated public BasicLineParser();
3574 method @Deprecated protected org.apache.http.ProtocolVersion createProtocolVersion(int, int);
3575 method @Deprecated protected org.apache.http.RequestLine createRequestLine(String, String, org.apache.http.ProtocolVersion);
3576 method @Deprecated protected org.apache.http.StatusLine createStatusLine(org.apache.http.ProtocolVersion, int, String);
3577 method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3578 method @Deprecated public static final org.apache.http.Header parseHeader(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3579 method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
3580 method @Deprecated public static final org.apache.http.ProtocolVersion parseProtocolVersion(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3581 method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3582 method @Deprecated public static final org.apache.http.RequestLine parseRequestLine(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3583 method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3584 method @Deprecated public static final org.apache.http.StatusLine parseStatusLine(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3585 method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3586 method @Deprecated protected void skipWhitespace(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3587 field @Deprecated public static final org.apache.http.message.BasicLineParser DEFAULT;
3588 field @Deprecated protected final org.apache.http.ProtocolVersion protocol;
Paul Duffin03a95652017-07-14 13:48:42 +01003589 }
3590
Tor Norbyebd65b232019-01-07 18:09:28 -08003591 @Deprecated public class BasicListHeaderIterator implements org.apache.http.HeaderIterator {
3592 ctor @Deprecated public BasicListHeaderIterator(java.util.List, String);
3593 method @Deprecated protected boolean filterHeader(int);
3594 method @Deprecated protected int findNext(int);
3595 method @Deprecated public boolean hasNext();
3596 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3597 method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementException;
3598 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3599 field @Deprecated protected final java.util.List allHeaders;
3600 field @Deprecated protected int currentIndex;
3601 field @Deprecated protected String headerName;
3602 field @Deprecated protected int lastIndex;
Paul Duffin03a95652017-07-14 13:48:42 +01003603 }
3604
Tor Norbyebd65b232019-01-07 18:09:28 -08003605 @Deprecated public class BasicNameValuePair implements java.lang.Cloneable org.apache.http.NameValuePair {
3606 ctor @Deprecated public BasicNameValuePair(String, String);
3607 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3608 method @Deprecated public String getName();
3609 method @Deprecated public String getValue();
Paul Duffin03a95652017-07-14 13:48:42 +01003610 }
3611
Tor Norbyebd65b232019-01-07 18:09:28 -08003612 @Deprecated public class BasicRequestLine implements java.lang.Cloneable org.apache.http.RequestLine {
3613 ctor @Deprecated public BasicRequestLine(String, String, org.apache.http.ProtocolVersion);
3614 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3615 method @Deprecated public String getMethod();
3616 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3617 method @Deprecated public String getUri();
Paul Duffin03a95652017-07-14 13:48:42 +01003618 }
3619
Tor Norbyebd65b232019-01-07 18:09:28 -08003620 @Deprecated public class BasicStatusLine implements java.lang.Cloneable org.apache.http.StatusLine {
3621 ctor @Deprecated public BasicStatusLine(org.apache.http.ProtocolVersion, int, String);
3622 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3623 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3624 method @Deprecated public String getReasonPhrase();
3625 method @Deprecated public int getStatusCode();
Paul Duffin03a95652017-07-14 13:48:42 +01003626 }
3627
Tor Norbyebd65b232019-01-07 18:09:28 -08003628 @Deprecated public class BasicTokenIterator implements org.apache.http.TokenIterator {
3629 ctor @Deprecated public BasicTokenIterator(org.apache.http.HeaderIterator);
3630 method @Deprecated protected String createToken(String, int, int);
3631 method @Deprecated protected int findNext(int) throws org.apache.http.ParseException;
3632 method @Deprecated protected int findTokenEnd(int);
3633 method @Deprecated protected int findTokenSeparator(int);
3634 method @Deprecated protected int findTokenStart(int);
3635 method @Deprecated public boolean hasNext();
3636 method @Deprecated protected boolean isHttpSeparator(char);
3637 method @Deprecated protected boolean isTokenChar(char);
3638 method @Deprecated protected boolean isTokenSeparator(char);
3639 method @Deprecated protected boolean isWhitespace(char);
3640 method @Deprecated public final Object next() throws java.util.NoSuchElementException, org.apache.http.ParseException;
3641 method @Deprecated public String nextToken() throws java.util.NoSuchElementException, org.apache.http.ParseException;
3642 method @Deprecated public final void remove() throws java.lang.UnsupportedOperationException;
3643 field @Deprecated public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
3644 field @Deprecated protected String currentHeader;
3645 field @Deprecated protected String currentToken;
3646 field @Deprecated protected final org.apache.http.HeaderIterator headerIt;
3647 field @Deprecated protected int searchPos;
Paul Duffin03a95652017-07-14 13:48:42 +01003648 }
3649
Tor Norbyebd65b232019-01-07 18:09:28 -08003650 @Deprecated public class BufferedHeader implements java.lang.Cloneable org.apache.http.FormattedHeader {
3651 ctor @Deprecated public BufferedHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
3652 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3653 method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
3654 method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
3655 method @Deprecated public String getName();
3656 method @Deprecated public String getValue();
3657 method @Deprecated public int getValuePos();
Paul Duffin03a95652017-07-14 13:48:42 +01003658 }
3659
Tor Norbyebd65b232019-01-07 18:09:28 -08003660 @Deprecated public class HeaderGroup implements java.lang.Cloneable {
3661 ctor @Deprecated public HeaderGroup();
3662 method @Deprecated public void addHeader(org.apache.http.Header);
3663 method @Deprecated public void clear();
3664 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3665 method @Deprecated public boolean containsHeader(String);
3666 method @Deprecated public org.apache.http.message.HeaderGroup copy();
3667 method @Deprecated public org.apache.http.Header[] getAllHeaders();
3668 method @Deprecated public org.apache.http.Header getCondensedHeader(String);
3669 method @Deprecated public org.apache.http.Header getFirstHeader(String);
3670 method @Deprecated public org.apache.http.Header[] getHeaders(String);
3671 method @Deprecated public org.apache.http.Header getLastHeader(String);
3672 method @Deprecated public org.apache.http.HeaderIterator iterator();
3673 method @Deprecated public org.apache.http.HeaderIterator iterator(String);
3674 method @Deprecated public void removeHeader(org.apache.http.Header);
3675 method @Deprecated public void setHeaders(org.apache.http.Header[]);
3676 method @Deprecated public void updateHeader(org.apache.http.Header);
Paul Duffin03a95652017-07-14 13:48:42 +01003677 }
3678
Tor Norbyebd65b232019-01-07 18:09:28 -08003679 @Deprecated public interface HeaderValueFormatter {
3680 method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement[], boolean);
3681 method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement, boolean);
3682 method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair, boolean);
3683 method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair[], boolean);
Paul Duffin03a95652017-07-14 13:48:42 +01003684 }
3685
Tor Norbyebd65b232019-01-07 18:09:28 -08003686 @Deprecated public interface HeaderValueParser {
3687 method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3688 method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3689 method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3690 method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
Paul Duffin03a95652017-07-14 13:48:42 +01003691 }
3692
Tor Norbyebd65b232019-01-07 18:09:28 -08003693 @Deprecated public interface LineFormatter {
3694 method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion);
3695 method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
3696 method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
3697 method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
Paul Duffin03a95652017-07-14 13:48:42 +01003698 }
3699
Tor Norbyebd65b232019-01-07 18:09:28 -08003700 @Deprecated public interface LineParser {
3701 method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3702 method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
3703 method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3704 method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3705 method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
Paul Duffin03a95652017-07-14 13:48:42 +01003706 }
3707
Tor Norbyebd65b232019-01-07 18:09:28 -08003708 @Deprecated public class ParserCursor {
3709 ctor @Deprecated public ParserCursor(int, int);
3710 method @Deprecated public boolean atEnd();
3711 method @Deprecated public int getLowerBound();
3712 method @Deprecated public int getPos();
3713 method @Deprecated public int getUpperBound();
3714 method @Deprecated public void updatePos(int);
Paul Duffin03a95652017-07-14 13:48:42 +01003715 }
3716
3717}
3718
3719package org.apache.http.params {
3720
Tor Norbyebd65b232019-01-07 18:09:28 -08003721 @Deprecated public abstract class AbstractHttpParams implements org.apache.http.params.HttpParams {
3722 ctor @Deprecated protected AbstractHttpParams();
3723 method @Deprecated public boolean getBooleanParameter(String, boolean);
3724 method @Deprecated public double getDoubleParameter(String, double);
3725 method @Deprecated public int getIntParameter(String, int);
3726 method @Deprecated public long getLongParameter(String, long);
3727 method @Deprecated public boolean isParameterFalse(String);
3728 method @Deprecated public boolean isParameterTrue(String);
3729 method @Deprecated public org.apache.http.params.HttpParams setBooleanParameter(String, boolean);
3730 method @Deprecated public org.apache.http.params.HttpParams setDoubleParameter(String, double);
3731 method @Deprecated public org.apache.http.params.HttpParams setIntParameter(String, int);
3732 method @Deprecated public org.apache.http.params.HttpParams setLongParameter(String, long);
Paul Duffin03a95652017-07-14 13:48:42 +01003733 }
3734
Tor Norbyebd65b232019-01-07 18:09:28 -08003735 @Deprecated public final class BasicHttpParams extends org.apache.http.params.AbstractHttpParams implements java.lang.Cloneable java.io.Serializable {
3736 ctor @Deprecated public BasicHttpParams();
3737 method @Deprecated public void clear();
3738 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3739 method @Deprecated public org.apache.http.params.HttpParams copy();
3740 method @Deprecated protected void copyParams(org.apache.http.params.HttpParams);
3741 method @Deprecated public Object getParameter(String);
3742 method @Deprecated public boolean isParameterSet(String);
3743 method @Deprecated public boolean isParameterSetLocally(String);
3744 method @Deprecated public boolean removeParameter(String);
3745 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3746 method @Deprecated public void setParameters(String[], Object);
Paul Duffin03a95652017-07-14 13:48:42 +01003747 }
3748
Tor Norbyebd65b232019-01-07 18:09:28 -08003749 @Deprecated public interface CoreProtocolPNames {
3750 field @Deprecated public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset";
3751 field @Deprecated public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset";
3752 field @Deprecated public static final String ORIGIN_SERVER = "http.origin-server";
3753 field @Deprecated public static final String PROTOCOL_VERSION = "http.protocol.version";
3754 field @Deprecated public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-transfer-encoding";
3755 field @Deprecated public static final String USER_AGENT = "http.useragent";
3756 field @Deprecated public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue";
3757 field @Deprecated public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue";
Paul Duffin03a95652017-07-14 13:48:42 +01003758 }
3759
Tor Norbyebd65b232019-01-07 18:09:28 -08003760 @Deprecated public final class DefaultedHttpParams extends org.apache.http.params.AbstractHttpParams {
3761 ctor @Deprecated public DefaultedHttpParams(org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
3762 method @Deprecated public org.apache.http.params.HttpParams copy();
3763 method @Deprecated public org.apache.http.params.HttpParams getDefaults();
3764 method @Deprecated public Object getParameter(String);
3765 method @Deprecated public boolean removeParameter(String);
3766 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
Paul Duffin03a95652017-07-14 13:48:42 +01003767 }
3768
Tor Norbyebd65b232019-01-07 18:09:28 -08003769 @Deprecated public abstract class HttpAbstractParamBean {
3770 ctor @Deprecated public HttpAbstractParamBean(org.apache.http.params.HttpParams);
3771 field @Deprecated protected final org.apache.http.params.HttpParams params;
Paul Duffin03a95652017-07-14 13:48:42 +01003772 }
3773
Tor Norbyebd65b232019-01-07 18:09:28 -08003774 @Deprecated public class HttpConnectionParamBean extends org.apache.http.params.HttpAbstractParamBean {
3775 ctor @Deprecated public HttpConnectionParamBean(org.apache.http.params.HttpParams);
3776 method @Deprecated public void setConnectionTimeout(int);
3777 method @Deprecated public void setLinger(int);
3778 method @Deprecated public void setSoTimeout(int);
3779 method @Deprecated public void setSocketBufferSize(int);
3780 method @Deprecated public void setStaleCheckingEnabled(boolean);
3781 method @Deprecated public void setTcpNoDelay(boolean);
Paul Duffin03a95652017-07-14 13:48:42 +01003782 }
3783
Tor Norbyebd65b232019-01-07 18:09:28 -08003784 @Deprecated public class HttpProtocolParamBean extends org.apache.http.params.HttpAbstractParamBean {
3785 ctor @Deprecated public HttpProtocolParamBean(org.apache.http.params.HttpParams);
3786 method @Deprecated public void setContentCharset(String);
3787 method @Deprecated public void setHttpElementCharset(String);
3788 method @Deprecated public void setUseExpectContinue(boolean);
3789 method @Deprecated public void setUserAgent(String);
3790 method @Deprecated public void setVersion(org.apache.http.HttpVersion);
Paul Duffin03a95652017-07-14 13:48:42 +01003791 }
3792
Tor Norbyebd65b232019-01-07 18:09:28 -08003793 @Deprecated public final class HttpProtocolParams implements org.apache.http.params.CoreProtocolPNames {
3794 method @Deprecated public static String getContentCharset(org.apache.http.params.HttpParams);
3795 method @Deprecated public static String getHttpElementCharset(org.apache.http.params.HttpParams);
3796 method @Deprecated public static String getUserAgent(org.apache.http.params.HttpParams);
3797 method @Deprecated public static org.apache.http.ProtocolVersion getVersion(org.apache.http.params.HttpParams);
3798 method @Deprecated public static void setContentCharset(org.apache.http.params.HttpParams, String);
3799 method @Deprecated public static void setHttpElementCharset(org.apache.http.params.HttpParams, String);
3800 method @Deprecated public static void setUseExpectContinue(org.apache.http.params.HttpParams, boolean);
3801 method @Deprecated public static void setUserAgent(org.apache.http.params.HttpParams, String);
3802 method @Deprecated public static void setVersion(org.apache.http.params.HttpParams, org.apache.http.ProtocolVersion);
3803 method @Deprecated public static boolean useExpectContinue(org.apache.http.params.HttpParams);
Paul Duffin03a95652017-07-14 13:48:42 +01003804 }
3805
3806}
3807
3808package org.apache.http.protocol {
3809
Tor Norbyebd65b232019-01-07 18:09:28 -08003810 @Deprecated public class BasicHttpContext implements org.apache.http.protocol.HttpContext {
3811 ctor @Deprecated public BasicHttpContext();
3812 ctor @Deprecated public BasicHttpContext(org.apache.http.protocol.HttpContext);
3813 method @Deprecated public Object getAttribute(String);
3814 method @Deprecated public Object removeAttribute(String);
3815 method @Deprecated public void setAttribute(String, Object);
Paul Duffin03a95652017-07-14 13:48:42 +01003816 }
3817
Tor Norbyebd65b232019-01-07 18:09:28 -08003818 @Deprecated public final class BasicHttpProcessor implements java.lang.Cloneable org.apache.http.protocol.HttpProcessor org.apache.http.protocol.HttpRequestInterceptorList org.apache.http.protocol.HttpResponseInterceptorList {
3819 ctor @Deprecated public BasicHttpProcessor();
3820 method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor);
3821 method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor, int);
3822 method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor);
3823 method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor, int);
3824 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3825 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3826 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
3827 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3828 method @Deprecated public void clearInterceptors();
3829 method @Deprecated public void clearRequestInterceptors();
3830 method @Deprecated public void clearResponseInterceptors();
3831 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3832 method @Deprecated public org.apache.http.protocol.BasicHttpProcessor copy();
3833 method @Deprecated protected void copyInterceptors(org.apache.http.protocol.BasicHttpProcessor);
3834 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3835 method @Deprecated public int getRequestInterceptorCount();
3836 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3837 method @Deprecated public int getResponseInterceptorCount();
3838 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3839 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3840 method @Deprecated public void removeRequestInterceptorByClass(Class);
3841 method @Deprecated public void removeResponseInterceptorByClass(Class);
3842 method @Deprecated public void setInterceptors(java.util.List);
3843 field @Deprecated protected java.util.List requestInterceptors;
3844 field @Deprecated protected java.util.List responseInterceptors;
Paul Duffin03a95652017-07-14 13:48:42 +01003845 }
3846
Tor Norbyebd65b232019-01-07 18:09:28 -08003847 @Deprecated public final class DefaultedHttpContext implements org.apache.http.protocol.HttpContext {
3848 ctor @Deprecated public DefaultedHttpContext(org.apache.http.protocol.HttpContext, org.apache.http.protocol.HttpContext);
3849 method @Deprecated public Object getAttribute(String);
3850 method @Deprecated public org.apache.http.protocol.HttpContext getDefaults();
3851 method @Deprecated public Object removeAttribute(String);
3852 method @Deprecated public void setAttribute(String, Object);
Paul Duffin03a95652017-07-14 13:48:42 +01003853 }
3854
Tor Norbyebd65b232019-01-07 18:09:28 -08003855 @Deprecated public interface ExecutionContext {
3856 field @Deprecated public static final String HTTP_CONNECTION = "http.connection";
3857 field @Deprecated public static final String HTTP_PROXY_HOST = "http.proxy_host";
3858 field @Deprecated public static final String HTTP_REQUEST = "http.request";
3859 field @Deprecated public static final String HTTP_REQ_SENT = "http.request_sent";
3860 field @Deprecated public static final String HTTP_RESPONSE = "http.response";
3861 field @Deprecated public static final String HTTP_TARGET_HOST = "http.target_host";
Paul Duffin03a95652017-07-14 13:48:42 +01003862 }
3863
Tor Norbyebd65b232019-01-07 18:09:28 -08003864 @Deprecated public final class HTTP {
3865 method @Deprecated public static boolean isWhitespace(char);
3866 field @Deprecated public static final String ASCII = "ASCII";
3867 field @Deprecated public static final String CHARSET_PARAM = "; charset=";
3868 field @Deprecated public static final String CHUNK_CODING = "chunked";
3869 field @Deprecated public static final String CONN_CLOSE = "Close";
3870 field @Deprecated public static final String CONN_DIRECTIVE = "Connection";
3871 field @Deprecated public static final String CONN_KEEP_ALIVE = "Keep-Alive";
3872 field @Deprecated public static final String CONTENT_ENCODING = "Content-Encoding";
3873 field @Deprecated public static final String CONTENT_LEN = "Content-Length";
3874 field @Deprecated public static final String CONTENT_TYPE = "Content-Type";
3875 field @Deprecated public static final int CR = 13; // 0xd
3876 field @Deprecated public static final String DATE_HEADER = "Date";
3877 field @Deprecated public static final String DEFAULT_CONTENT_CHARSET = "ISO-8859-1";
3878 field @Deprecated public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
3879 field @Deprecated public static final String DEFAULT_PROTOCOL_CHARSET = "US-ASCII";
3880 field @Deprecated public static final String EXPECT_CONTINUE = "100-continue";
3881 field @Deprecated public static final String EXPECT_DIRECTIVE = "Expect";
3882 field @Deprecated public static final int HT = 9; // 0x9
3883 field @Deprecated public static final String IDENTITY_CODING = "identity";
3884 field @Deprecated public static final String ISO_8859_1 = "ISO-8859-1";
3885 field @Deprecated public static final int LF = 10; // 0xa
3886 field @Deprecated public static final String OCTET_STREAM_TYPE = "application/octet-stream";
3887 field @Deprecated public static final String PLAIN_TEXT_TYPE = "text/plain";
3888 field @Deprecated public static final String SERVER_HEADER = "Server";
3889 field @Deprecated public static final int SP = 32; // 0x20
3890 field @Deprecated public static final String TARGET_HOST = "Host";
3891 field @Deprecated public static final String TRANSFER_ENCODING = "Transfer-Encoding";
3892 field @Deprecated public static final String USER_AGENT = "User-Agent";
3893 field @Deprecated public static final String US_ASCII = "US-ASCII";
3894 field @Deprecated public static final String UTF_16 = "UTF-16";
3895 field @Deprecated public static final String UTF_8 = "UTF-8";
Paul Duffin03a95652017-07-14 13:48:42 +01003896 }
3897
Tor Norbyebd65b232019-01-07 18:09:28 -08003898 @Deprecated public interface HttpContext {
3899 method @Deprecated public Object getAttribute(String);
3900 method @Deprecated public Object removeAttribute(String);
3901 method @Deprecated public void setAttribute(String, Object);
3902 field @Deprecated public static final String RESERVED_PREFIX = "http.";
Paul Duffin03a95652017-07-14 13:48:42 +01003903 }
3904
Tor Norbyebd65b232019-01-07 18:09:28 -08003905 @Deprecated public class HttpDateGenerator {
3906 ctor @Deprecated public HttpDateGenerator();
3907 method @Deprecated public String getCurrentDate();
3908 field @Deprecated public static final java.util.TimeZone GMT;
3909 field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
Paul Duffin03a95652017-07-14 13:48:42 +01003910 }
3911
Tor Norbyebd65b232019-01-07 18:09:28 -08003912 @Deprecated public interface HttpExpectationVerifier {
3913 method @Deprecated public void verify(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
Paul Duffin03a95652017-07-14 13:48:42 +01003914 }
3915
Tor Norbyebd65b232019-01-07 18:09:28 -08003916 @Deprecated public interface HttpProcessor extends org.apache.http.HttpRequestInterceptor org.apache.http.HttpResponseInterceptor {
Paul Duffin03a95652017-07-14 13:48:42 +01003917 }
3918
Tor Norbyebd65b232019-01-07 18:09:28 -08003919 @Deprecated public class HttpRequestExecutor {
3920 ctor @Deprecated public HttpRequestExecutor();
3921 method @Deprecated protected boolean canResponseHaveBody(org.apache.http.HttpRequest, org.apache.http.HttpResponse);
3922 method @Deprecated protected org.apache.http.HttpResponse doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3923 method @Deprecated protected org.apache.http.HttpResponse doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3924 method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3925 method @Deprecated public void postProcess(org.apache.http.HttpResponse, org.apache.http.protocol.HttpProcessor, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3926 method @Deprecated public void preProcess(org.apache.http.HttpRequest, org.apache.http.protocol.HttpProcessor, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003927 }
3928
Tor Norbyebd65b232019-01-07 18:09:28 -08003929 @Deprecated public interface HttpRequestHandler {
3930 method @Deprecated public void handle(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003931 }
3932
Tor Norbyebd65b232019-01-07 18:09:28 -08003933 @Deprecated public class HttpRequestHandlerRegistry implements org.apache.http.protocol.HttpRequestHandlerResolver {
3934 ctor @Deprecated public HttpRequestHandlerRegistry();
3935 method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3936 method @Deprecated protected boolean matchUriRequestPattern(String, String);
3937 method @Deprecated public void register(String, org.apache.http.protocol.HttpRequestHandler);
3938 method @Deprecated public void setHandlers(java.util.Map);
3939 method @Deprecated public void unregister(String);
Paul Duffin03a95652017-07-14 13:48:42 +01003940 }
3941
Tor Norbyebd65b232019-01-07 18:09:28 -08003942 @Deprecated public interface HttpRequestHandlerResolver {
3943 method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
Paul Duffin03a95652017-07-14 13:48:42 +01003944 }
3945
Tor Norbyebd65b232019-01-07 18:09:28 -08003946 @Deprecated public interface HttpRequestInterceptorList {
3947 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3948 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3949 method @Deprecated public void clearRequestInterceptors();
3950 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3951 method @Deprecated public int getRequestInterceptorCount();
3952 method @Deprecated public void removeRequestInterceptorByClass(Class);
3953 method @Deprecated public void setInterceptors(java.util.List);
Paul Duffin03a95652017-07-14 13:48:42 +01003954 }
3955
Tor Norbyebd65b232019-01-07 18:09:28 -08003956 @Deprecated public interface HttpResponseInterceptorList {
3957 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3958 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
3959 method @Deprecated public void clearResponseInterceptors();
3960 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3961 method @Deprecated public int getResponseInterceptorCount();
3962 method @Deprecated public void removeResponseInterceptorByClass(Class);
3963 method @Deprecated public void setInterceptors(java.util.List);
Paul Duffin03a95652017-07-14 13:48:42 +01003964 }
3965
Tor Norbyebd65b232019-01-07 18:09:28 -08003966 @Deprecated public class HttpService {
3967 ctor @Deprecated public HttpService(org.apache.http.protocol.HttpProcessor, org.apache.http.ConnectionReuseStrategy, org.apache.http.HttpResponseFactory);
3968 method @Deprecated protected void doService(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3969 method @Deprecated public org.apache.http.params.HttpParams getParams();
3970 method @Deprecated protected void handleException(org.apache.http.HttpException, org.apache.http.HttpResponse);
3971 method @Deprecated public void handleRequest(org.apache.http.HttpServerConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3972 method @Deprecated public void setConnReuseStrategy(org.apache.http.ConnectionReuseStrategy);
3973 method @Deprecated public void setExpectationVerifier(org.apache.http.protocol.HttpExpectationVerifier);
3974 method @Deprecated public void setHandlerResolver(org.apache.http.protocol.HttpRequestHandlerResolver);
3975 method @Deprecated public void setHttpProcessor(org.apache.http.protocol.HttpProcessor);
3976 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3977 method @Deprecated public void setResponseFactory(org.apache.http.HttpResponseFactory);
Paul Duffin03a95652017-07-14 13:48:42 +01003978 }
3979
Tor Norbyebd65b232019-01-07 18:09:28 -08003980 @Deprecated public class RequestConnControl implements org.apache.http.HttpRequestInterceptor {
3981 ctor @Deprecated public RequestConnControl();
3982 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003983 }
3984
Tor Norbyebd65b232019-01-07 18:09:28 -08003985 @Deprecated public class RequestContent implements org.apache.http.HttpRequestInterceptor {
3986 ctor @Deprecated public RequestContent();
3987 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003988 }
3989
Tor Norbyebd65b232019-01-07 18:09:28 -08003990 @Deprecated public class RequestDate implements org.apache.http.HttpRequestInterceptor {
3991 ctor @Deprecated public RequestDate();
3992 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003993 }
3994
Tor Norbyebd65b232019-01-07 18:09:28 -08003995 @Deprecated public class RequestExpectContinue implements org.apache.http.HttpRequestInterceptor {
3996 ctor @Deprecated public RequestExpectContinue();
3997 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01003998 }
3999
Tor Norbyebd65b232019-01-07 18:09:28 -08004000 @Deprecated public class RequestTargetHost implements org.apache.http.HttpRequestInterceptor {
4001 ctor @Deprecated public RequestTargetHost();
4002 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01004003 }
4004
Tor Norbyebd65b232019-01-07 18:09:28 -08004005 @Deprecated public class RequestUserAgent implements org.apache.http.HttpRequestInterceptor {
4006 ctor @Deprecated public RequestUserAgent();
4007 method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01004008 }
4009
Tor Norbyebd65b232019-01-07 18:09:28 -08004010 @Deprecated public class ResponseConnControl implements org.apache.http.HttpResponseInterceptor {
4011 ctor @Deprecated public ResponseConnControl();
4012 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01004013 }
4014
Tor Norbyebd65b232019-01-07 18:09:28 -08004015 @Deprecated public class ResponseContent implements org.apache.http.HttpResponseInterceptor {
4016 ctor @Deprecated public ResponseContent();
4017 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01004018 }
4019
Tor Norbyebd65b232019-01-07 18:09:28 -08004020 @Deprecated public class ResponseDate implements org.apache.http.HttpResponseInterceptor {
4021 ctor @Deprecated public ResponseDate();
4022 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01004023 }
4024
Tor Norbyebd65b232019-01-07 18:09:28 -08004025 @Deprecated public class ResponseServer implements org.apache.http.HttpResponseInterceptor {
4026 ctor @Deprecated public ResponseServer();
4027 method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
Paul Duffin03a95652017-07-14 13:48:42 +01004028 }
4029
Tor Norbyebd65b232019-01-07 18:09:28 -08004030 @Deprecated public class SyncBasicHttpContext extends org.apache.http.protocol.BasicHttpContext {
4031 ctor @Deprecated public SyncBasicHttpContext(org.apache.http.protocol.HttpContext);
Paul Duffin03a95652017-07-14 13:48:42 +01004032 }
4033
Tor Norbyebd65b232019-01-07 18:09:28 -08004034 @Deprecated public class UriPatternMatcher {
4035 ctor @Deprecated public UriPatternMatcher();
4036 method @Deprecated public Object lookup(String);
4037 method @Deprecated protected boolean matchUriRequestPattern(String, String);
4038 method @Deprecated public void register(String, Object);
4039 method @Deprecated public void setHandlers(java.util.Map);
4040 method @Deprecated public void unregister(String);
Paul Duffin03a95652017-07-14 13:48:42 +01004041 }
4042
4043}
4044
4045package org.apache.http.util {
4046
Tor Norbyebd65b232019-01-07 18:09:28 -08004047 @Deprecated public final class ByteArrayBuffer {
4048 ctor @Deprecated public ByteArrayBuffer(int);
4049 method @Deprecated public void append(byte[], int, int);
4050 method @Deprecated public void append(int);
4051 method @Deprecated public void append(char[], int, int);
4052 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4053 method @Deprecated public byte[] buffer();
4054 method @Deprecated public int byteAt(int);
4055 method @Deprecated public int capacity();
4056 method @Deprecated public void clear();
4057 method @Deprecated public boolean isEmpty();
4058 method @Deprecated public boolean isFull();
4059 method @Deprecated public int length();
4060 method @Deprecated public void setLength(int);
4061 method @Deprecated public byte[] toByteArray();
Paul Duffin03a95652017-07-14 13:48:42 +01004062 }
4063
Tor Norbyebd65b232019-01-07 18:09:28 -08004064 @Deprecated public final class CharArrayBuffer {
4065 ctor @Deprecated public CharArrayBuffer(int);
4066 method @Deprecated public void append(char[], int, int);
4067 method @Deprecated public void append(String);
4068 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4069 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer);
4070 method @Deprecated public void append(char);
4071 method @Deprecated public void append(byte[], int, int);
4072 method @Deprecated public void append(org.apache.http.util.ByteArrayBuffer, int, int);
4073 method @Deprecated public void append(Object);
4074 method @Deprecated public char[] buffer();
4075 method @Deprecated public int capacity();
4076 method @Deprecated public char charAt(int);
4077 method @Deprecated public void clear();
4078 method @Deprecated public void ensureCapacity(int);
4079 method @Deprecated public int indexOf(int, int, int);
4080 method @Deprecated public int indexOf(int);
4081 method @Deprecated public boolean isEmpty();
4082 method @Deprecated public boolean isFull();
4083 method @Deprecated public int length();
4084 method @Deprecated public void setLength(int);
4085 method @Deprecated public String substring(int, int);
4086 method @Deprecated public String substringTrimmed(int, int);
4087 method @Deprecated public char[] toCharArray();
Paul Duffin03a95652017-07-14 13:48:42 +01004088 }
4089
Tor Norbyebd65b232019-01-07 18:09:28 -08004090 @Deprecated public final class EncodingUtils {
4091 method @Deprecated public static byte[] getAsciiBytes(String);
4092 method @Deprecated public static String getAsciiString(byte[], int, int);
4093 method @Deprecated public static String getAsciiString(byte[]);
4094 method @Deprecated public static byte[] getBytes(String, String);
4095 method @Deprecated public static String getString(byte[], int, int, String);
4096 method @Deprecated public static String getString(byte[], String);
Paul Duffin03a95652017-07-14 13:48:42 +01004097 }
4098
Tor Norbyebd65b232019-01-07 18:09:28 -08004099 @Deprecated public final class EntityUtils {
4100 method @Deprecated public static String getContentCharSet(org.apache.http.HttpEntity) throws org.apache.http.ParseException;
4101 method @Deprecated public static byte[] toByteArray(org.apache.http.HttpEntity) throws java.io.IOException;
4102 method @Deprecated public static String toString(org.apache.http.HttpEntity, String) throws java.io.IOException, org.apache.http.ParseException;
4103 method @Deprecated public static String toString(org.apache.http.HttpEntity) throws java.io.IOException, org.apache.http.ParseException;
Paul Duffin03a95652017-07-14 13:48:42 +01004104 }
4105
Tor Norbyebd65b232019-01-07 18:09:28 -08004106 @Deprecated public final class ExceptionUtils {
4107 method @Deprecated public static void initCause(Throwable, Throwable);
Paul Duffin03a95652017-07-14 13:48:42 +01004108 }
4109
Tor Norbyebd65b232019-01-07 18:09:28 -08004110 @Deprecated public final class LangUtils {
4111 method @Deprecated public static boolean equals(Object, Object);
4112 method @Deprecated public static boolean equals(Object[], Object[]);
4113 method @Deprecated public static int hashCode(int, int);
4114 method @Deprecated public static int hashCode(int, boolean);
4115 method @Deprecated public static int hashCode(int, Object);
4116 field @Deprecated public static final int HASH_OFFSET = 37; // 0x25
4117 field @Deprecated public static final int HASH_SEED = 17; // 0x11
Paul Duffin03a95652017-07-14 13:48:42 +01004118 }
4119
Tor Norbyebd65b232019-01-07 18:09:28 -08004120 @Deprecated public class VersionInfo {
4121 ctor @Deprecated protected VersionInfo(String, String, String, String, String);
4122 method @Deprecated protected static final org.apache.http.util.VersionInfo fromMap(String, java.util.Map, ClassLoader);
4123 method @Deprecated public final String getClassloader();
4124 method @Deprecated public final String getModule();
4125 method @Deprecated public final String getPackage();
4126 method @Deprecated public final String getRelease();
4127 method @Deprecated public final String getTimestamp();
4128 method @Deprecated public static final org.apache.http.util.VersionInfo[] loadVersionInfo(String[], ClassLoader);
4129 method @Deprecated public static final org.apache.http.util.VersionInfo loadVersionInfo(String, ClassLoader);
4130 field @Deprecated public static final String PROPERTY_MODULE = "info.module";
4131 field @Deprecated public static final String PROPERTY_RELEASE = "info.release";
4132 field @Deprecated public static final String PROPERTY_TIMESTAMP = "info.timestamp";
4133 field @Deprecated public static final String UNAVAILABLE = "UNAVAILABLE";
4134 field @Deprecated public static final String VERSION_PROPERTY_FILE = "version.properties";
Paul Duffin03a95652017-07-14 13:48:42 +01004135 }
4136
4137}
4138