xref: /aosp_15_r20/prebuilts/sdk/29/public/api/org.apache.http.legacy.txt (revision 344a7f5ef16c479e7a7f54ee6567a9d112f9e72b)
1// Signature format: 2.0
2package android.net.compatibility {
3
4  public class WebAddress {
5    ctor public WebAddress(String) throws java.lang.IllegalArgumentException;
6    method public String getAuthInfo();
7    method public String getHost();
8    method public String getPath();
9    method public int getPort();
10    method public String getScheme();
11    method public void setAuthInfo(String);
12    method public void setHost(String);
13    method public void setPath(String);
14    method public void setPort(int);
15    method public void setScheme(String);
16  }
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();
25    method public void enableCurlLogging(String, int);
26    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);
40    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);
43    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 {
69    method public android.net.http.SslError doHandshakeAndValidateServerCertificates(android.net.http.HttpsConnection, javax.net.ssl.SSLSocket, String) throws java.io.IOException;
70    method public static android.net.http.CertificateChainValidator getInstance();
71    method public static void handleTrustStorageUpdate();
72    method public static android.net.http.SslError verifyServerCertificates(byte[][], String, String) throws java.io.IOException;
73  }
74
75  public class DelegatingSSLSession implements javax.net.ssl.SSLSession {
76    ctor protected DelegatingSSLSession();
77    method public int getApplicationBufferSize();
78    method public String getCipherSuite();
79    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;
87    method public String getPeerHost();
88    method public int getPeerPort();
89    method public java.security.Principal getPeerPrincipal() throws javax.net.ssl.SSLPeerUnverifiedException;
90    method public String getProtocol();
91    method public javax.net.ssl.SSLSessionContext getSessionContext();
92    method public Object getValue(String);
93    method public String[] getValueNames();
94    method public void invalidate();
95    method public boolean isValid();
96    method public void putValue(String, Object);
97    method public void removeValue(String);
98  }
99
100  public static class DelegatingSSLSession.CertificateWrap extends android.net.http.DelegatingSSLSession {
101    ctor public DelegatingSSLSession.CertificateWrap(java.security.cert.Certificate);
102  }
103
104  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);
112    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();
132    method public String getAcceptRanges();
133    method public String getCacheControl();
134    method public int getConnectionType();
135    method public String getContentDisposition();
136    method public String getContentEncoding();
137    method public long getContentLength();
138    method public String getContentType();
139    method public String getEtag();
140    method public String getExpires();
141    method public void getHeaders(android.net.http.Headers.HeaderCallback);
142    method public String getLastModified();
143    method public String getLocation();
144    method public String getPragma();
145    method public String getProxyAuthenticate();
146    method public String getRefresh();
147    method public java.util.ArrayList<java.lang.String> getSetCookie();
148    method public long getTransferEncoding();
149    method public String getWwwAuthenticate();
150    method public String getXPermittedCrossDomainPolicies();
151    method public void parseHeader(org.apache.http.util.CharArrayBuffer);
152    method public void setAcceptRanges(String);
153    method public void setCacheControl(String);
154    method public void setContentDisposition(String);
155    method public void setContentEncoding(String);
156    method public void setContentLength(long);
157    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";
167    field public static final int CONN_CLOSE = 1; // 0x1
168    field public static final String CONN_DIRECTIVE = "connection";
169    field public static final int CONN_KEEP_ALIVE = 2; // 0x2
170    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";
178    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
181    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";
189  }
190
191  public static interface Headers.HeaderCallback {
192    method public void header(String, String);
193  }
194
195  public class HttpAuthHeader {
196    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();
203    method public int getScheme();
204    method public boolean getStale();
205    method public String getUsername();
206    method public boolean isBasic();
207    method public boolean isDigest();
208    method public boolean isProxy();
209    method public boolean isSupportedScheme();
210    method public void setPassword(String);
211    method public void setProxy();
212    method public void setUsername(String);
213    field public static final int BASIC = 1; // 0x1
214    field public static final String BASIC_TOKEN = "Basic";
215    field public static final int DIGEST = 2; // 0x2
216    field public static final String DIGEST_TOKEN = "Digest";
217    field public static final int UNKNOWN = 0; // 0x0
218  }
219
220  public class HttpsConnection {
221    method public static void initializeEngine(java.io.File);
222  }
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();
229    method public void error(int, String);
230    method public boolean handleSslErrorRequest(android.net.http.SslError);
231    method public void headers(android.net.http.Headers);
232    method public void locationChanged(String, boolean);
233    method public void requestSent();
234    method public void status(int, int, int, String);
235  }
236
237  public class RequestHandle {
238    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);
241    method public void cancel();
242    method public static String computeBasicAuthResponse(String, String);
243    method public String getMethod();
244    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);
250    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>);
253    method public void waitUntilComplete();
254    field public static final int MAX_REDIRECT_COUNT = 16; // 0x10
255  }
256
257  public class RequestQueue {
258    ctor public RequestQueue(android.content.Context);
259    ctor public RequestQueue(android.content.Context, int);
260    method public void disablePlatformNotifications();
261    method public void enablePlatformNotifications();
262    method public org.apache.http.HttpHost getProxyHost();
263    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);
270    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
276}
277
278package com.android.internal.http.multipart {
279
280  public class ByteArrayPartSource implements com.android.internal.http.multipart.PartSource {
281    ctor public ByteArrayPartSource(String, byte[]);
282    method public java.io.InputStream createInputStream();
283    method public String getFileName();
284    method public long getLength();
285  }
286
287  public class FilePart extends com.android.internal.http.multipart.PartBase {
288    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;
294    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;
297    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=";
301  }
302
303  public class FilePartSource implements com.android.internal.http.multipart.PartSource {
304    ctor public FilePartSource(java.io.File) throws java.io.FileNotFoundException;
305    ctor public FilePartSource(String, java.io.File) throws java.io.FileNotFoundException;
306    method public java.io.InputStream createInputStream() throws java.io.IOException;
307    method public String getFileName();
308    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();
316    method public org.apache.http.Header getContentType();
317    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;
321    field public static final String MULTIPART_BOUNDARY = "http.method.multipart.boundary";
322    field protected com.android.internal.http.multipart.Part[] parts;
323  }
324
325  public abstract class Part {
326    ctor public Part();
327    method @Deprecated public static String getBoundary();
328    method public abstract String getCharSet();
329    method public abstract String getContentType();
330    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;
332    method public abstract String getName();
333    method protected byte[] getPartBoundary();
334    method public abstract String getTransferEncoding();
335    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;
348    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=";
351    field protected static final byte[] CHARSET_BYTES;
352    field protected static final String CONTENT_DISPOSITION = "Content-Disposition: form-data; name=";
353    field protected static final byte[] CONTENT_DISPOSITION_BYTES;
354    field protected static final String CONTENT_TRANSFER_ENCODING = "Content-Transfer-Encoding: ";
355    field protected static final byte[] CONTENT_TRANSFER_ENCODING_BYTES;
356    field protected static final String CONTENT_TYPE = "Content-Type: ";
357    field protected static final byte[] CONTENT_TYPE_BYTES;
358    field protected static final String CRLF = "\r\n";
359    field protected static final byte[] CRLF_BYTES;
360    field protected static final String EXTRA = "--";
361    field protected static final byte[] EXTRA_BYTES;
362    field protected static final String QUOTE = "\"";
363    field protected static final byte[] QUOTE_BYTES;
364  }
365
366  public abstract class PartBase extends com.android.internal.http.multipart.Part {
367    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);
376  }
377
378  public interface PartSource {
379    method public java.io.InputStream createInputStream() throws java.io.IOException;
380    method public String getFileName();
381    method public long getLength();
382  }
383
384  public class StringPart extends com.android.internal.http.multipart.PartBase {
385    ctor public StringPart(String, String, String);
386    ctor public StringPart(String, String);
387    method protected long lengthOfData();
388    method protected void sendData(java.io.OutputStream) throws java.io.IOException;
389    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";
392  }
393
394}
395
396package org.apache.commons.codec {
397
398  @Deprecated public interface BinaryDecoder extends org.apache.commons.codec.Decoder {
399    method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
400  }
401
402  @Deprecated public interface BinaryEncoder extends org.apache.commons.codec.Encoder {
403    method @Deprecated public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException;
404  }
405
406  @Deprecated public interface Decoder {
407    method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
408  }
409
410  @Deprecated public class DecoderException extends java.lang.Exception {
411    ctor @Deprecated public DecoderException(String);
412  }
413
414  @Deprecated public interface Encoder {
415    method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
416  }
417
418  @Deprecated public class EncoderException extends java.lang.Exception {
419    ctor @Deprecated public EncoderException(String);
420  }
421
422  @Deprecated public interface StringDecoder extends org.apache.commons.codec.Decoder {
423    method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
424  }
425
426  @Deprecated public interface StringEncoder extends org.apache.commons.codec.Encoder {
427    method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
428  }
429
430  @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);
434  }
435
436}
437
438package org.apache.commons.codec.binary {
439
440  @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[]);
451  }
452
453  @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);
465  }
466
467  @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;
476  }
477
478}
479
480package org.apache.commons.codec.language {
481
482  @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;
495  }
496
497  @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();
510  }
511
512  @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);
520  }
521
522  @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;
531  }
532
533  @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";
545  }
546
547}
548
549package org.apache.commons.codec.net {
550
551  @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();
563  }
564
565  @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);
579  }
580
581  @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();
595  }
596
597  @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;
615  }
616
617}
618
619package org.apache.commons.logging {
620
621  @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);
640  }
641
642  @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;
648  }
649
650  @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;
683  }
684
685  @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;
696  }
697
698}
699
700package org.apache.commons.logging.impl {
701
702  @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;
726  }
727
728  @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;
758  }
759
760  @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);
781  }
782
783  @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.";
826  }
827
828  @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();
839  }
840
841}
842
843package org.apache.http {
844
845  @Deprecated public class ConnectionClosedException extends java.io.IOException {
846    ctor @Deprecated public ConnectionClosedException(String);
847  }
848
849  @Deprecated public interface ConnectionReuseStrategy {
850    method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
851  }
852
853  @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();
856  }
857
858  @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();
862  }
863
864  @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();
871  }
872
873  @Deprecated public interface HeaderElementIterator extends java.util.Iterator {
874    method @Deprecated public org.apache.http.HeaderElement nextElement();
875    method @Deprecated public boolean hasNext();
876  }
877
878  @Deprecated public interface HeaderIterator extends java.util.Iterator {
879    method @Deprecated public org.apache.http.Header nextHeader();
880    method @Deprecated public boolean hasNext();
881  }
882
883  @Deprecated public interface HttpClientConnection extends org.apache.http.HttpConnection {
884    method @Deprecated public void flush() throws java.io.IOException;
885    method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
886    method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
887    method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
888    method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
889    method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
890  }
891
892  @Deprecated public interface HttpConnection {
893    method @Deprecated public void close() throws java.io.IOException;
894    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
895    method @Deprecated public int getSocketTimeout();
896    method @Deprecated public boolean isOpen();
897    method @Deprecated public boolean isStale();
898    method @Deprecated public void setSocketTimeout(int);
899    method @Deprecated public void shutdown() throws java.io.IOException;
900  }
901
902  @Deprecated public interface HttpConnectionMetrics {
903    method @Deprecated public Object getMetric(String);
904    method @Deprecated public long getReceivedBytesCount();
905    method @Deprecated public long getRequestCount();
906    method @Deprecated public long getResponseCount();
907    method @Deprecated public long getSentBytesCount();
908    method @Deprecated public void reset();
909  }
910
911  @Deprecated public interface HttpEntity {
912    method @Deprecated public void consumeContent() throws java.io.IOException;
913    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
914    method @Deprecated public org.apache.http.Header getContentEncoding();
915    method @Deprecated public long getContentLength();
916    method @Deprecated public org.apache.http.Header getContentType();
917    method @Deprecated public boolean isChunked();
918    method @Deprecated public boolean isRepeatable();
919    method @Deprecated public boolean isStreaming();
920    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
921  }
922
923  @Deprecated public interface HttpEntityEnclosingRequest extends org.apache.http.HttpRequest {
924    method @Deprecated public boolean expectContinue();
925    method @Deprecated public org.apache.http.HttpEntity getEntity();
926    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
927  }
928
929  @Deprecated public class HttpException extends java.lang.Exception {
930    ctor @Deprecated public HttpException();
931    ctor @Deprecated public HttpException(String);
932    ctor @Deprecated public HttpException(String, Throwable);
933  }
934
935  @Deprecated public final class HttpHost implements java.lang.Cloneable {
936    ctor @Deprecated public HttpHost(String, int, String);
937    ctor @Deprecated public HttpHost(String, int);
938    ctor @Deprecated public HttpHost(String);
939    ctor @Deprecated public HttpHost(org.apache.http.HttpHost);
940    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
941    method @Deprecated public String getHostName();
942    method @Deprecated public int getPort();
943    method @Deprecated public String getSchemeName();
944    method @Deprecated public String toHostString();
945    method @Deprecated public String toURI();
946    field @Deprecated public static final String DEFAULT_SCHEME_NAME = "http";
947    field @Deprecated protected final String hostname;
948    field @Deprecated protected final String lcHostname;
949    field @Deprecated protected final int port;
950    field @Deprecated protected final String schemeName;
951  }
952
953  @Deprecated public interface HttpInetConnection extends org.apache.http.HttpConnection {
954    method @Deprecated public java.net.InetAddress getLocalAddress();
955    method @Deprecated public int getLocalPort();
956    method @Deprecated public java.net.InetAddress getRemoteAddress();
957    method @Deprecated public int getRemotePort();
958  }
959
960  @Deprecated public interface HttpMessage {
961    method @Deprecated public void addHeader(org.apache.http.Header);
962    method @Deprecated public void addHeader(String, String);
963    method @Deprecated public boolean containsHeader(String);
964    method @Deprecated public org.apache.http.Header[] getAllHeaders();
965    method @Deprecated public org.apache.http.Header getFirstHeader(String);
966    method @Deprecated public org.apache.http.Header[] getHeaders(String);
967    method @Deprecated public org.apache.http.Header getLastHeader(String);
968    method @Deprecated public org.apache.http.params.HttpParams getParams();
969    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
970    method @Deprecated public org.apache.http.HeaderIterator headerIterator();
971    method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
972    method @Deprecated public void removeHeader(org.apache.http.Header);
973    method @Deprecated public void removeHeaders(String);
974    method @Deprecated public void setHeader(org.apache.http.Header);
975    method @Deprecated public void setHeader(String, String);
976    method @Deprecated public void setHeaders(org.apache.http.Header[]);
977    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
978  }
979
980  @Deprecated public interface HttpRequest extends org.apache.http.HttpMessage {
981    method @Deprecated public org.apache.http.RequestLine getRequestLine();
982  }
983
984  @Deprecated public interface HttpRequestFactory {
985    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) throws org.apache.http.MethodNotSupportedException;
986    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.apache.http.MethodNotSupportedException;
987  }
988
989  @Deprecated public interface HttpRequestInterceptor {
990    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
991  }
992
993  @Deprecated public interface HttpResponse extends org.apache.http.HttpMessage {
994    method @Deprecated public org.apache.http.HttpEntity getEntity();
995    method @Deprecated public java.util.Locale getLocale();
996    method @Deprecated public org.apache.http.StatusLine getStatusLine();
997    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
998    method @Deprecated public void setLocale(java.util.Locale);
999    method @Deprecated public void setReasonPhrase(String) throws java.lang.IllegalStateException;
1000    method @Deprecated public void setStatusCode(int) throws java.lang.IllegalStateException;
1001    method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
1002    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
1003    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
1004  }
1005
1006  @Deprecated public interface HttpResponseFactory {
1007    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVersion, int, org.apache.http.protocol.HttpContext);
1008    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine, org.apache.http.protocol.HttpContext);
1009  }
1010
1011  @Deprecated public interface HttpResponseInterceptor {
1012    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
1013  }
1014
1015  @Deprecated public interface HttpServerConnection extends org.apache.http.HttpConnection {
1016    method @Deprecated public void flush() throws java.io.IOException;
1017    method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
1018    method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.http.HttpException, java.io.IOException;
1019    method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
1020    method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
1021  }
1022
1023  @Deprecated public interface HttpStatus {
1024    field @Deprecated public static final int SC_ACCEPTED = 202; // 0xca
1025    field @Deprecated public static final int SC_BAD_GATEWAY = 502; // 0x1f6
1026    field @Deprecated public static final int SC_BAD_REQUEST = 400; // 0x190
1027    field @Deprecated public static final int SC_CONFLICT = 409; // 0x199
1028    field @Deprecated public static final int SC_CONTINUE = 100; // 0x64
1029    field @Deprecated public static final int SC_CREATED = 201; // 0xc9
1030    field @Deprecated public static final int SC_EXPECTATION_FAILED = 417; // 0x1a1
1031    field @Deprecated public static final int SC_FAILED_DEPENDENCY = 424; // 0x1a8
1032    field @Deprecated public static final int SC_FORBIDDEN = 403; // 0x193
1033    field @Deprecated public static final int SC_GATEWAY_TIMEOUT = 504; // 0x1f8
1034    field @Deprecated public static final int SC_GONE = 410; // 0x19a
1035    field @Deprecated public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505; // 0x1f9
1036    field @Deprecated public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419; // 0x1a3
1037    field @Deprecated public static final int SC_INSUFFICIENT_STORAGE = 507; // 0x1fb
1038    field @Deprecated public static final int SC_INTERNAL_SERVER_ERROR = 500; // 0x1f4
1039    field @Deprecated public static final int SC_LENGTH_REQUIRED = 411; // 0x19b
1040    field @Deprecated public static final int SC_LOCKED = 423; // 0x1a7
1041    field @Deprecated public static final int SC_METHOD_FAILURE = 420; // 0x1a4
1042    field @Deprecated public static final int SC_METHOD_NOT_ALLOWED = 405; // 0x195
1043    field @Deprecated public static final int SC_MOVED_PERMANENTLY = 301; // 0x12d
1044    field @Deprecated public static final int SC_MOVED_TEMPORARILY = 302; // 0x12e
1045    field @Deprecated public static final int SC_MULTIPLE_CHOICES = 300; // 0x12c
1046    field @Deprecated public static final int SC_MULTI_STATUS = 207; // 0xcf
1047    field @Deprecated public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203; // 0xcb
1048    field @Deprecated public static final int SC_NOT_ACCEPTABLE = 406; // 0x196
1049    field @Deprecated public static final int SC_NOT_FOUND = 404; // 0x194
1050    field @Deprecated public static final int SC_NOT_IMPLEMENTED = 501; // 0x1f5
1051    field @Deprecated public static final int SC_NOT_MODIFIED = 304; // 0x130
1052    field @Deprecated public static final int SC_NO_CONTENT = 204; // 0xcc
1053    field @Deprecated public static final int SC_OK = 200; // 0xc8
1054    field @Deprecated public static final int SC_PARTIAL_CONTENT = 206; // 0xce
1055    field @Deprecated public static final int SC_PAYMENT_REQUIRED = 402; // 0x192
1056    field @Deprecated public static final int SC_PRECONDITION_FAILED = 412; // 0x19c
1057    field @Deprecated public static final int SC_PROCESSING = 102; // 0x66
1058    field @Deprecated public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407; // 0x197
1059    field @Deprecated public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416; // 0x1a0
1060    field @Deprecated public static final int SC_REQUEST_TIMEOUT = 408; // 0x198
1061    field @Deprecated public static final int SC_REQUEST_TOO_LONG = 413; // 0x19d
1062    field @Deprecated public static final int SC_REQUEST_URI_TOO_LONG = 414; // 0x19e
1063    field @Deprecated public static final int SC_RESET_CONTENT = 205; // 0xcd
1064    field @Deprecated public static final int SC_SEE_OTHER = 303; // 0x12f
1065    field @Deprecated public static final int SC_SERVICE_UNAVAILABLE = 503; // 0x1f7
1066    field @Deprecated public static final int SC_SWITCHING_PROTOCOLS = 101; // 0x65
1067    field @Deprecated public static final int SC_TEMPORARY_REDIRECT = 307; // 0x133
1068    field @Deprecated public static final int SC_UNAUTHORIZED = 401; // 0x191
1069    field @Deprecated public static final int SC_UNPROCESSABLE_ENTITY = 422; // 0x1a6
1070    field @Deprecated public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415; // 0x19f
1071    field @Deprecated public static final int SC_USE_PROXY = 305; // 0x131
1072  }
1073
1074  @Deprecated public final class HttpVersion extends org.apache.http.ProtocolVersion implements java.io.Serializable {
1075    ctor @Deprecated public HttpVersion(int, int);
1076    field @Deprecated public static final String HTTP = "HTTP";
1077    field @Deprecated public static final org.apache.http.HttpVersion HTTP_0_9;
1078    field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_0;
1079    field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_1;
1080  }
1081
1082  @Deprecated public class MalformedChunkCodingException extends java.io.IOException {
1083    ctor @Deprecated public MalformedChunkCodingException();
1084    ctor @Deprecated public MalformedChunkCodingException(String);
1085  }
1086
1087  @Deprecated public class MethodNotSupportedException extends org.apache.http.HttpException {
1088    ctor @Deprecated public MethodNotSupportedException(String);
1089    ctor @Deprecated public MethodNotSupportedException(String, Throwable);
1090  }
1091
1092  @Deprecated public interface NameValuePair {
1093    method @Deprecated public String getName();
1094    method @Deprecated public String getValue();
1095  }
1096
1097  @Deprecated public class NoHttpResponseException extends java.io.IOException {
1098    ctor @Deprecated public NoHttpResponseException(String);
1099  }
1100
1101  @Deprecated public class ParseException extends java.lang.RuntimeException {
1102    ctor @Deprecated public ParseException();
1103    ctor @Deprecated public ParseException(String);
1104  }
1105
1106  @Deprecated public class ProtocolException extends org.apache.http.HttpException {
1107    ctor @Deprecated public ProtocolException();
1108    ctor @Deprecated public ProtocolException(String);
1109    ctor @Deprecated public ProtocolException(String, Throwable);
1110  }
1111
1112  @Deprecated public class ProtocolVersion implements java.lang.Cloneable java.io.Serializable {
1113    ctor @Deprecated public ProtocolVersion(String, int, int);
1114    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1115    method @Deprecated public int compareToVersion(org.apache.http.ProtocolVersion);
1116    method @Deprecated public final boolean equals(Object);
1117    method @Deprecated public org.apache.http.ProtocolVersion forVersion(int, int);
1118    method @Deprecated public final int getMajor();
1119    method @Deprecated public final int getMinor();
1120    method @Deprecated public final String getProtocol();
1121    method @Deprecated public final boolean greaterEquals(org.apache.http.ProtocolVersion);
1122    method @Deprecated public final int hashCode();
1123    method @Deprecated public boolean isComparable(org.apache.http.ProtocolVersion);
1124    method @Deprecated public final boolean lessEquals(org.apache.http.ProtocolVersion);
1125    field @Deprecated protected final int major;
1126    field @Deprecated protected final int minor;
1127    field @Deprecated protected final String protocol;
1128  }
1129
1130  @Deprecated public interface ReasonPhraseCatalog {
1131    method @Deprecated public String getReason(int, java.util.Locale);
1132  }
1133
1134  @Deprecated public interface RequestLine {
1135    method @Deprecated public String getMethod();
1136    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1137    method @Deprecated public String getUri();
1138  }
1139
1140  @Deprecated public interface StatusLine {
1141    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1142    method @Deprecated public String getReasonPhrase();
1143    method @Deprecated public int getStatusCode();
1144  }
1145
1146  @Deprecated public interface TokenIterator extends java.util.Iterator {
1147    method @Deprecated public String nextToken();
1148    method @Deprecated public boolean hasNext();
1149  }
1150
1151  @Deprecated public class UnsupportedHttpVersionException extends org.apache.http.ProtocolException {
1152    ctor @Deprecated public UnsupportedHttpVersionException();
1153    ctor @Deprecated public UnsupportedHttpVersionException(String);
1154  }
1155
1156}
1157
1158package org.apache.http.auth {
1159
1160  @Deprecated public final class AUTH {
1161    field @Deprecated public static final String PROXY_AUTH = "Proxy-Authenticate";
1162    field @Deprecated public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
1163    field @Deprecated public static final String WWW_AUTH = "WWW-Authenticate";
1164    field @Deprecated public static final String WWW_AUTH_RESP = "Authorization";
1165  }
1166
1167  @Deprecated public interface AuthScheme {
1168    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
1169    method @Deprecated public String getParameter(String);
1170    method @Deprecated public String getRealm();
1171    method @Deprecated public String getSchemeName();
1172    method @Deprecated public boolean isComplete();
1173    method @Deprecated public boolean isConnectionBased();
1174    method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.auth.MalformedChallengeException;
1175  }
1176
1177  @Deprecated public interface AuthSchemeFactory {
1178    method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
1179  }
1180
1181  @Deprecated public final class AuthSchemeRegistry {
1182    ctor @Deprecated public AuthSchemeRegistry();
1183    method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme(String, org.apache.http.params.HttpParams) throws java.lang.IllegalStateException;
1184    method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1185    method @Deprecated public void register(String, org.apache.http.auth.AuthSchemeFactory);
1186    method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.auth.AuthSchemeFactory>);
1187    method @Deprecated public void unregister(String);
1188  }
1189
1190  @Deprecated public class AuthScope {
1191    ctor @Deprecated public AuthScope(String, int, String, String);
1192    ctor @Deprecated public AuthScope(String, int, String);
1193    ctor @Deprecated public AuthScope(String, int);
1194    ctor @Deprecated public AuthScope(org.apache.http.auth.AuthScope);
1195    method @Deprecated public String getHost();
1196    method @Deprecated public int getPort();
1197    method @Deprecated public String getRealm();
1198    method @Deprecated public String getScheme();
1199    method @Deprecated public int match(org.apache.http.auth.AuthScope);
1200    field @Deprecated public static final org.apache.http.auth.AuthScope ANY;
1201    field @Deprecated public static final String ANY_HOST;
1202    field @Deprecated public static final int ANY_PORT = -1; // 0xffffffff
1203    field @Deprecated public static final String ANY_REALM;
1204    field @Deprecated public static final String ANY_SCHEME;
1205  }
1206
1207  @Deprecated public class AuthState {
1208    ctor @Deprecated public AuthState();
1209    method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme();
1210    method @Deprecated public org.apache.http.auth.AuthScope getAuthScope();
1211    method @Deprecated public org.apache.http.auth.Credentials getCredentials();
1212    method @Deprecated public void invalidate();
1213    method @Deprecated public boolean isValid();
1214    method @Deprecated public void setAuthScheme(org.apache.http.auth.AuthScheme);
1215    method @Deprecated public void setAuthScope(org.apache.http.auth.AuthScope);
1216    method @Deprecated public void setCredentials(org.apache.http.auth.Credentials);
1217  }
1218
1219  @Deprecated public class AuthenticationException extends org.apache.http.ProtocolException {
1220    ctor @Deprecated public AuthenticationException();
1221    ctor @Deprecated public AuthenticationException(String);
1222    ctor @Deprecated public AuthenticationException(String, Throwable);
1223  }
1224
1225  @Deprecated public final class BasicUserPrincipal implements java.security.Principal {
1226    ctor @Deprecated public BasicUserPrincipal(String);
1227    method @Deprecated public String getName();
1228  }
1229
1230  @Deprecated public interface Credentials {
1231    method @Deprecated public String getPassword();
1232    method @Deprecated public java.security.Principal getUserPrincipal();
1233  }
1234
1235  @Deprecated public class InvalidCredentialsException extends org.apache.http.auth.AuthenticationException {
1236    ctor @Deprecated public InvalidCredentialsException();
1237    ctor @Deprecated public InvalidCredentialsException(String);
1238    ctor @Deprecated public InvalidCredentialsException(String, Throwable);
1239  }
1240
1241  @Deprecated public class MalformedChallengeException extends org.apache.http.ProtocolException {
1242    ctor @Deprecated public MalformedChallengeException();
1243    ctor @Deprecated public MalformedChallengeException(String);
1244    ctor @Deprecated public MalformedChallengeException(String, Throwable);
1245  }
1246
1247  @Deprecated public class NTCredentials implements org.apache.http.auth.Credentials {
1248    ctor @Deprecated public NTCredentials(String);
1249    ctor @Deprecated public NTCredentials(String, String, String, String);
1250    method @Deprecated public String getDomain();
1251    method @Deprecated public String getPassword();
1252    method @Deprecated public String getUserName();
1253    method @Deprecated public java.security.Principal getUserPrincipal();
1254    method @Deprecated public String getWorkstation();
1255  }
1256
1257  @Deprecated public class NTUserPrincipal implements java.security.Principal {
1258    ctor @Deprecated public NTUserPrincipal(String, String);
1259    method @Deprecated public String getDomain();
1260    method @Deprecated public String getName();
1261    method @Deprecated public String getUsername();
1262  }
1263
1264  @Deprecated public class UsernamePasswordCredentials implements org.apache.http.auth.Credentials {
1265    ctor @Deprecated public UsernamePasswordCredentials(String);
1266    ctor @Deprecated public UsernamePasswordCredentials(String, String);
1267    method @Deprecated public String getPassword();
1268    method @Deprecated public String getUserName();
1269    method @Deprecated public java.security.Principal getUserPrincipal();
1270  }
1271
1272}
1273
1274package org.apache.http.auth.params {
1275
1276  @Deprecated public interface AuthPNames {
1277    field @Deprecated public static final String CREDENTIAL_CHARSET = "http.auth.credential-charset";
1278  }
1279
1280  @Deprecated public class AuthParamBean extends org.apache.http.params.HttpAbstractParamBean {
1281    ctor @Deprecated public AuthParamBean(org.apache.http.params.HttpParams);
1282    method @Deprecated public void setCredentialCharset(String);
1283  }
1284
1285  @Deprecated public final class AuthParams {
1286    method @Deprecated public static String getCredentialCharset(org.apache.http.params.HttpParams);
1287    method @Deprecated public static void setCredentialCharset(org.apache.http.params.HttpParams, String);
1288  }
1289
1290}
1291
1292package org.apache.http.client {
1293
1294  @Deprecated public interface AuthenticationHandler {
1295    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;
1296    method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
1297    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;
1298  }
1299
1300  @Deprecated public class CircularRedirectException extends org.apache.http.client.RedirectException {
1301    ctor @Deprecated public CircularRedirectException();
1302    ctor @Deprecated public CircularRedirectException(String);
1303    ctor @Deprecated public CircularRedirectException(String, Throwable);
1304  }
1305
1306  @Deprecated public class ClientProtocolException extends java.io.IOException {
1307    ctor @Deprecated public ClientProtocolException();
1308    ctor @Deprecated public ClientProtocolException(String);
1309    ctor @Deprecated public ClientProtocolException(Throwable);
1310    ctor @Deprecated public ClientProtocolException(String, Throwable);
1311  }
1312
1313  @Deprecated public interface CookieStore {
1314    method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
1315    method @Deprecated public void clear();
1316    method @Deprecated public boolean clearExpired(java.util.Date);
1317    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
1318  }
1319
1320  @Deprecated public interface CredentialsProvider {
1321    method @Deprecated public void clear();
1322    method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope);
1323    method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth.Credentials);
1324  }
1325
1326  @Deprecated public interface HttpClient {
1327    method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1328    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;
1329    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;
1330    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;
1331    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;
1332    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;
1333    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;
1334    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;
1335    method @Deprecated public org.apache.http.conn.ClientConnectionManager getConnectionManager();
1336    method @Deprecated public org.apache.http.params.HttpParams getParams();
1337  }
1338
1339  @Deprecated public interface HttpRequestRetryHandler {
1340    method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.HttpContext);
1341  }
1342
1343  @Deprecated public class HttpResponseException extends org.apache.http.client.ClientProtocolException {
1344    ctor @Deprecated public HttpResponseException(int, String);
1345    method @Deprecated public int getStatusCode();
1346  }
1347
1348  @Deprecated public class NonRepeatableRequestException extends org.apache.http.ProtocolException {
1349    ctor @Deprecated public NonRepeatableRequestException();
1350    ctor @Deprecated public NonRepeatableRequestException(String);
1351  }
1352
1353  @Deprecated public class RedirectException extends org.apache.http.ProtocolException {
1354    ctor @Deprecated public RedirectException();
1355    ctor @Deprecated public RedirectException(String);
1356    ctor @Deprecated public RedirectException(String, Throwable);
1357  }
1358
1359  @Deprecated public interface RedirectHandler {
1360    method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.ProtocolException;
1361    method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
1362  }
1363
1364  @Deprecated public interface RequestDirector {
1365    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;
1366  }
1367
1368  @Deprecated public interface ResponseHandler<T> {
1369    method @Deprecated public T handleResponse(org.apache.http.HttpResponse) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
1370  }
1371
1372  @Deprecated public interface UserTokenHandler {
1373    method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
1374  }
1375
1376}
1377
1378package org.apache.http.client.entity {
1379
1380  @Deprecated public class UrlEncodedFormEntity extends org.apache.http.entity.StringEntity {
1381    ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePair>, String) throws java.io.UnsupportedEncodingException;
1382    ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePair>) throws java.io.UnsupportedEncodingException;
1383  }
1384
1385}
1386
1387package org.apache.http.client.methods {
1388
1389  @Deprecated public interface AbortableHttpRequest {
1390    method @Deprecated public void abort();
1391    method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) throws java.io.IOException;
1392    method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) throws java.io.IOException;
1393  }
1394
1395  @Deprecated public class HttpDelete extends org.apache.http.client.methods.HttpRequestBase {
1396    ctor @Deprecated public HttpDelete();
1397    ctor @Deprecated public HttpDelete(java.net.URI);
1398    ctor @Deprecated public HttpDelete(String);
1399    method @Deprecated public String getMethod();
1400    field @Deprecated public static final String METHOD_NAME = "DELETE";
1401  }
1402
1403  @Deprecated public abstract class HttpEntityEnclosingRequestBase extends org.apache.http.client.methods.HttpRequestBase implements org.apache.http.HttpEntityEnclosingRequest {
1404    ctor @Deprecated public HttpEntityEnclosingRequestBase();
1405    method @Deprecated public boolean expectContinue();
1406    method @Deprecated public org.apache.http.HttpEntity getEntity();
1407    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
1408  }
1409
1410  @Deprecated public class HttpGet extends org.apache.http.client.methods.HttpRequestBase {
1411    ctor @Deprecated public HttpGet();
1412    ctor @Deprecated public HttpGet(java.net.URI);
1413    ctor @Deprecated public HttpGet(String);
1414    method @Deprecated public String getMethod();
1415    field @Deprecated public static final String METHOD_NAME = "GET";
1416  }
1417
1418  @Deprecated public class HttpHead extends org.apache.http.client.methods.HttpRequestBase {
1419    ctor @Deprecated public HttpHead();
1420    ctor @Deprecated public HttpHead(java.net.URI);
1421    ctor @Deprecated public HttpHead(String);
1422    method @Deprecated public String getMethod();
1423    field @Deprecated public static final String METHOD_NAME = "HEAD";
1424  }
1425
1426  @Deprecated public class HttpOptions extends org.apache.http.client.methods.HttpRequestBase {
1427    ctor @Deprecated public HttpOptions();
1428    ctor @Deprecated public HttpOptions(java.net.URI);
1429    ctor @Deprecated public HttpOptions(String);
1430    method @Deprecated public java.util.Set<java.lang.String> getAllowedMethods(org.apache.http.HttpResponse);
1431    method @Deprecated public String getMethod();
1432    field @Deprecated public static final String METHOD_NAME = "OPTIONS";
1433  }
1434
1435  @Deprecated public class HttpPost extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase {
1436    ctor @Deprecated public HttpPost();
1437    ctor @Deprecated public HttpPost(java.net.URI);
1438    ctor @Deprecated public HttpPost(String);
1439    method @Deprecated public String getMethod();
1440    field @Deprecated public static final String METHOD_NAME = "POST";
1441  }
1442
1443  @Deprecated public class HttpPut extends org.apache.http.client.methods.HttpEntityEnclosingRequestBase {
1444    ctor @Deprecated public HttpPut();
1445    ctor @Deprecated public HttpPut(java.net.URI);
1446    ctor @Deprecated public HttpPut(String);
1447    method @Deprecated public String getMethod();
1448    field @Deprecated public static final String METHOD_NAME = "PUT";
1449  }
1450
1451  @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 {
1452    ctor @Deprecated public HttpRequestBase();
1453    method @Deprecated public void abort();
1454    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1455    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1456    method @Deprecated public org.apache.http.RequestLine getRequestLine();
1457    method @Deprecated public java.net.URI getURI();
1458    method @Deprecated public boolean isAborted();
1459    method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) throws java.io.IOException;
1460    method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) throws java.io.IOException;
1461    method @Deprecated public void setURI(java.net.URI);
1462  }
1463
1464  @Deprecated public class HttpTrace extends org.apache.http.client.methods.HttpRequestBase {
1465    ctor @Deprecated public HttpTrace();
1466    ctor @Deprecated public HttpTrace(java.net.URI);
1467    ctor @Deprecated public HttpTrace(String);
1468    method @Deprecated public String getMethod();
1469    field @Deprecated public static final String METHOD_NAME = "TRACE";
1470  }
1471
1472  @Deprecated public interface HttpUriRequest extends org.apache.http.HttpRequest {
1473    method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
1474    method @Deprecated public String getMethod();
1475    method @Deprecated public java.net.URI getURI();
1476    method @Deprecated public boolean isAborted();
1477  }
1478
1479}
1480
1481package org.apache.http.client.params {
1482
1483  @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 {
1484  }
1485
1486  @Deprecated public final class AuthPolicy {
1487    field @Deprecated public static final String BASIC = "Basic";
1488    field @Deprecated public static final String DIGEST = "Digest";
1489    field @Deprecated public static final String NTLM = "NTLM";
1490  }
1491
1492  @Deprecated public interface ClientPNames {
1493    field @Deprecated public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects";
1494    field @Deprecated public static final String CONNECTION_MANAGER_FACTORY = "http.connection-manager.factory-object";
1495    field @Deprecated public static final String CONNECTION_MANAGER_FACTORY_CLASS_NAME = "http.connection-manager.factory-class-name";
1496    field @Deprecated public static final String COOKIE_POLICY = "http.protocol.cookie-policy";
1497    field @Deprecated public static final String DEFAULT_HEADERS = "http.default-headers";
1498    field @Deprecated public static final String DEFAULT_HOST = "http.default-host";
1499    field @Deprecated public static final String HANDLE_AUTHENTICATION = "http.protocol.handle-authentication";
1500    field @Deprecated public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
1501    field @Deprecated public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
1502    field @Deprecated public static final String REJECT_RELATIVE_REDIRECT = "http.protocol.reject-relative-redirect";
1503    field @Deprecated public static final String VIRTUAL_HOST = "http.virtual-host";
1504  }
1505
1506  @Deprecated public class ClientParamBean extends org.apache.http.params.HttpAbstractParamBean {
1507    ctor @Deprecated public ClientParamBean(org.apache.http.params.HttpParams);
1508    method @Deprecated public void setAllowCircularRedirects(boolean);
1509    method @Deprecated public void setConnectionManagerFactory(org.apache.http.conn.ClientConnectionManagerFactory);
1510    method @Deprecated public void setConnectionManagerFactoryClassName(String);
1511    method @Deprecated public void setCookiePolicy(String);
1512    method @Deprecated public void setDefaultHeaders(java.util.Collection<org.apache.http.Header>);
1513    method @Deprecated public void setDefaultHost(org.apache.http.HttpHost);
1514    method @Deprecated public void setHandleAuthentication(boolean);
1515    method @Deprecated public void setHandleRedirects(boolean);
1516    method @Deprecated public void setMaxRedirects(int);
1517    method @Deprecated public void setRejectRelativeRedirect(boolean);
1518    method @Deprecated public void setVirtualHost(org.apache.http.HttpHost);
1519  }
1520
1521  @Deprecated public final class CookiePolicy {
1522    field @Deprecated public static final String BEST_MATCH = "best-match";
1523    field @Deprecated public static final String BROWSER_COMPATIBILITY = "compatibility";
1524    field @Deprecated public static final String NETSCAPE = "netscape";
1525    field @Deprecated public static final String RFC_2109 = "rfc2109";
1526    field @Deprecated public static final String RFC_2965 = "rfc2965";
1527  }
1528
1529  @Deprecated public class HttpClientParams {
1530    method @Deprecated public static String getCookiePolicy(org.apache.http.params.HttpParams);
1531    method @Deprecated public static boolean isAuthenticating(org.apache.http.params.HttpParams);
1532    method @Deprecated public static boolean isRedirecting(org.apache.http.params.HttpParams);
1533    method @Deprecated public static void setAuthenticating(org.apache.http.params.HttpParams, boolean);
1534    method @Deprecated public static void setCookiePolicy(org.apache.http.params.HttpParams, String);
1535    method @Deprecated public static void setRedirecting(org.apache.http.params.HttpParams, boolean);
1536  }
1537
1538}
1539
1540package org.apache.http.client.protocol {
1541
1542  @Deprecated public interface ClientContext {
1543    field @Deprecated public static final String AUTHSCHEME_REGISTRY = "http.authscheme-registry";
1544    field @Deprecated public static final String AUTH_SCHEME_PREF = "http.auth.scheme-pref";
1545    field @Deprecated public static final String COOKIESPEC_REGISTRY = "http.cookiespec-registry";
1546    field @Deprecated public static final String COOKIE_ORIGIN = "http.cookie-origin";
1547    field @Deprecated public static final String COOKIE_SPEC = "http.cookie-spec";
1548    field @Deprecated public static final String COOKIE_STORE = "http.cookie-store";
1549    field @Deprecated public static final String CREDS_PROVIDER = "http.auth.credentials-provider";
1550    field @Deprecated public static final String PROXY_AUTH_STATE = "http.auth.proxy-scope";
1551    field @Deprecated public static final String TARGET_AUTH_STATE = "http.auth.target-scope";
1552    field @Deprecated public static final String USER_TOKEN = "http.user-token";
1553  }
1554
1555  @Deprecated public class ClientContextConfigurer implements org.apache.http.client.protocol.ClientContext {
1556    ctor @Deprecated public ClientContextConfigurer(org.apache.http.protocol.HttpContext);
1557    method @Deprecated public void setAuthSchemePref(java.util.List<java.lang.String>);
1558    method @Deprecated public void setAuthSchemeRegistry(org.apache.http.auth.AuthSchemeRegistry);
1559    method @Deprecated public void setCookieSpecRegistry(org.apache.http.cookie.CookieSpecRegistry);
1560    method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
1561    method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
1562  }
1563
1564  @Deprecated public class RequestAddCookies implements org.apache.http.HttpRequestInterceptor {
1565    ctor @Deprecated public RequestAddCookies();
1566    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
1567  }
1568
1569  @Deprecated public class RequestDefaultHeaders implements org.apache.http.HttpRequestInterceptor {
1570    ctor @Deprecated public RequestDefaultHeaders();
1571    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
1572  }
1573
1574  @Deprecated public class RequestProxyAuthentication implements org.apache.http.HttpRequestInterceptor {
1575    ctor @Deprecated public RequestProxyAuthentication();
1576    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
1577  }
1578
1579  @Deprecated public class RequestTargetAuthentication implements org.apache.http.HttpRequestInterceptor {
1580    ctor @Deprecated public RequestTargetAuthentication();
1581    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
1582  }
1583
1584  @Deprecated public class ResponseProcessCookies implements org.apache.http.HttpResponseInterceptor {
1585    ctor @Deprecated public ResponseProcessCookies();
1586    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
1587  }
1588
1589}
1590
1591package org.apache.http.client.utils {
1592
1593  @Deprecated public class CloneUtils {
1594    method @Deprecated public static Object clone(Object) throws java.lang.CloneNotSupportedException;
1595  }
1596
1597  @Deprecated public class URIUtils {
1598    method @Deprecated public static java.net.URI createURI(String, String, int, String, String, String) throws java.net.URISyntaxException;
1599    method @Deprecated public static java.net.URI resolve(java.net.URI, String);
1600    method @Deprecated public static java.net.URI resolve(java.net.URI, java.net.URI);
1601    method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost, boolean) throws java.net.URISyntaxException;
1602    method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost) throws java.net.URISyntaxException;
1603  }
1604
1605  @Deprecated public class URLEncodedUtils {
1606    ctor @Deprecated public URLEncodedUtils();
1607    method @Deprecated public static String format(java.util.List<? extends org.apache.http.NameValuePair>, String);
1608    method @Deprecated public static boolean isEncoded(org.apache.http.HttpEntity);
1609    method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(java.net.URI, String);
1610    method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(org.apache.http.HttpEntity) throws java.io.IOException;
1611    method @Deprecated public static void parse(java.util.List<org.apache.http.NameValuePair>, java.util.Scanner, String);
1612    field @Deprecated public static final String CONTENT_TYPE = "application/x-www-form-urlencoded";
1613  }
1614
1615}
1616
1617package org.apache.http.conn {
1618
1619  @Deprecated public class BasicEofSensorWatcher implements org.apache.http.conn.EofSensorWatcher {
1620    ctor @Deprecated public BasicEofSensorWatcher(org.apache.http.conn.ManagedClientConnection, boolean);
1621    method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1622    method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1623    method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1624    field @Deprecated protected boolean attemptReuse;
1625    field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
1626  }
1627
1628  @Deprecated public class BasicManagedEntity extends org.apache.http.entity.HttpEntityWrapper implements org.apache.http.conn.ConnectionReleaseTrigger org.apache.http.conn.EofSensorWatcher {
1629    ctor @Deprecated public BasicManagedEntity(org.apache.http.HttpEntity, org.apache.http.conn.ManagedClientConnection, boolean);
1630    method @Deprecated public void abortConnection() throws java.io.IOException;
1631    method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1632    method @Deprecated public void releaseConnection() throws java.io.IOException;
1633    method @Deprecated protected void releaseManagedConnection() throws java.io.IOException;
1634    method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1635    method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1636    field @Deprecated protected final boolean attemptReuse;
1637    field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
1638  }
1639
1640  @Deprecated public interface ClientConnectionManager {
1641    method @Deprecated public void closeExpiredConnections();
1642    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
1643    method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
1644    method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
1645    method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
1646    method @Deprecated public void shutdown();
1647  }
1648
1649  @Deprecated public interface ClientConnectionManagerFactory {
1650    method @Deprecated public org.apache.http.conn.ClientConnectionManager newInstance(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
1651  }
1652
1653  @Deprecated public interface ClientConnectionOperator {
1654    method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
1655    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;
1656    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;
1657  }
1658
1659  @Deprecated public interface ClientConnectionRequest {
1660    method @Deprecated public void abortRequest();
1661    method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(long, java.util.concurrent.TimeUnit) throws org.apache.http.conn.ConnectionPoolTimeoutException, java.lang.InterruptedException;
1662  }
1663
1664  @Deprecated public interface ConnectionKeepAliveStrategy {
1665    method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
1666  }
1667
1668  @Deprecated public class ConnectionPoolTimeoutException extends org.apache.http.conn.ConnectTimeoutException {
1669    ctor @Deprecated public ConnectionPoolTimeoutException();
1670    ctor @Deprecated public ConnectionPoolTimeoutException(String);
1671  }
1672
1673  @Deprecated public interface ConnectionReleaseTrigger {
1674    method @Deprecated public void abortConnection() throws java.io.IOException;
1675    method @Deprecated public void releaseConnection() throws java.io.IOException;
1676  }
1677
1678  @Deprecated public class EofSensorInputStream extends java.io.InputStream implements org.apache.http.conn.ConnectionReleaseTrigger {
1679    ctor @Deprecated public EofSensorInputStream(java.io.InputStream, org.apache.http.conn.EofSensorWatcher);
1680    method @Deprecated public void abortConnection() throws java.io.IOException;
1681    method @Deprecated protected void checkAbort() throws java.io.IOException;
1682    method @Deprecated protected void checkClose() throws java.io.IOException;
1683    method @Deprecated protected void checkEOF(int) throws java.io.IOException;
1684    method @Deprecated protected boolean isReadAllowed() throws java.io.IOException;
1685    method @Deprecated public int read() throws java.io.IOException;
1686    method @Deprecated public void releaseConnection() throws java.io.IOException;
1687    field @Deprecated protected java.io.InputStream wrappedStream;
1688  }
1689
1690  @Deprecated public interface EofSensorWatcher {
1691    method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1692    method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1693    method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1694  }
1695
1696  @Deprecated public class HttpHostConnectException extends java.net.ConnectException {
1697    ctor @Deprecated public HttpHostConnectException(org.apache.http.HttpHost, java.net.ConnectException);
1698    method @Deprecated public org.apache.http.HttpHost getHost();
1699  }
1700
1701  @Deprecated public interface ManagedClientConnection extends org.apache.http.HttpClientConnection org.apache.http.conn.ConnectionReleaseTrigger org.apache.http.HttpInetConnection {
1702    method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
1703    method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
1704    method @Deprecated public Object getState();
1705    method @Deprecated public boolean isMarkedReusable();
1706    method @Deprecated public boolean isSecure();
1707    method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
1708    method @Deprecated public void markReusable();
1709    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;
1710    method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
1711    method @Deprecated public void setState(Object);
1712    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1713    method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1714    method @Deprecated public void unmarkReusable();
1715  }
1716
1717  @Deprecated public final class MultihomePlainSocketFactory implements org.apache.http.conn.scheme.SocketFactory {
1718    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;
1719    method @Deprecated public java.net.Socket createSocket();
1720    method @Deprecated public static org.apache.http.conn.MultihomePlainSocketFactory getSocketFactory();
1721    method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentException;
1722  }
1723
1724  @Deprecated public interface OperatedClientConnection extends org.apache.http.HttpClientConnection org.apache.http.HttpInetConnection {
1725    method @Deprecated public java.net.Socket getSocket();
1726    method @Deprecated public org.apache.http.HttpHost getTargetHost();
1727    method @Deprecated public boolean isSecure();
1728    method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1729    method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.IOException;
1730    method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
1731  }
1732
1733}
1734
1735package org.apache.http.conn.params {
1736
1737  @Deprecated public interface ConnConnectionPNames {
1738    field @Deprecated public static final String MAX_STATUS_LINE_GARBAGE = "http.connection.max-status-line-garbage";
1739  }
1740
1741  @Deprecated public class ConnConnectionParamBean extends org.apache.http.params.HttpAbstractParamBean {
1742    ctor @Deprecated public ConnConnectionParamBean(org.apache.http.params.HttpParams);
1743    method @Deprecated public void setMaxStatusLineGarbage(int);
1744  }
1745
1746  @Deprecated public interface ConnManagerPNames {
1747    field @Deprecated public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-per-route";
1748    field @Deprecated public static final String MAX_TOTAL_CONNECTIONS = "http.conn-manager.max-total";
1749    field @Deprecated public static final String TIMEOUT = "http.conn-manager.timeout";
1750  }
1751
1752  @Deprecated public class ConnManagerParamBean extends org.apache.http.params.HttpAbstractParamBean {
1753    ctor @Deprecated public ConnManagerParamBean(org.apache.http.params.HttpParams);
1754    method @Deprecated public void setConnectionsPerRoute(org.apache.http.conn.params.ConnPerRouteBean);
1755    method @Deprecated public void setMaxTotalConnections(int);
1756    method @Deprecated public void setTimeout(long);
1757  }
1758
1759  @Deprecated public final class ConnManagerParams implements org.apache.http.conn.params.ConnManagerPNames {
1760    ctor @Deprecated public ConnManagerParams();
1761    method @Deprecated public static org.apache.http.conn.params.ConnPerRoute getMaxConnectionsPerRoute(org.apache.http.params.HttpParams);
1762    method @Deprecated public static int getMaxTotalConnections(org.apache.http.params.HttpParams);
1763    method @Deprecated public static long getTimeout(org.apache.http.params.HttpParams);
1764    method @Deprecated public static void setMaxConnectionsPerRoute(org.apache.http.params.HttpParams, org.apache.http.conn.params.ConnPerRoute);
1765    method @Deprecated public static void setMaxTotalConnections(org.apache.http.params.HttpParams, int);
1766    method @Deprecated public static void setTimeout(org.apache.http.params.HttpParams, long);
1767    field @Deprecated public static final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20; // 0x14
1768  }
1769
1770  @Deprecated public interface ConnPerRoute {
1771    method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1772  }
1773
1774  @Deprecated public final class ConnPerRouteBean implements org.apache.http.conn.params.ConnPerRoute {
1775    ctor @Deprecated public ConnPerRouteBean(int);
1776    ctor @Deprecated public ConnPerRouteBean();
1777    method @Deprecated public int getDefaultMax();
1778    method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1779    method @Deprecated public void setDefaultMaxPerRoute(int);
1780    method @Deprecated public void setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int);
1781    method @Deprecated public void setMaxForRoutes(java.util.Map<org.apache.http.conn.routing.HttpRoute,java.lang.Integer>);
1782    field @Deprecated public static final int DEFAULT_MAX_CONNECTIONS_PER_ROUTE = 2; // 0x2
1783  }
1784
1785  @Deprecated public interface ConnRoutePNames {
1786    field @Deprecated public static final String DEFAULT_PROXY = "http.route.default-proxy";
1787    field @Deprecated public static final String FORCED_ROUTE = "http.route.forced-route";
1788    field @Deprecated public static final String LOCAL_ADDRESS = "http.route.local-address";
1789  }
1790
1791  @Deprecated public class ConnRouteParamBean extends org.apache.http.params.HttpAbstractParamBean {
1792    ctor @Deprecated public ConnRouteParamBean(org.apache.http.params.HttpParams);
1793    method @Deprecated public void setDefaultProxy(org.apache.http.HttpHost);
1794    method @Deprecated public void setForcedRoute(org.apache.http.conn.routing.HttpRoute);
1795    method @Deprecated public void setLocalAddress(java.net.InetAddress);
1796  }
1797
1798  @Deprecated public class ConnRouteParams implements org.apache.http.conn.params.ConnRoutePNames {
1799    method @Deprecated public static org.apache.http.HttpHost getDefaultProxy(org.apache.http.params.HttpParams);
1800    method @Deprecated public static org.apache.http.conn.routing.HttpRoute getForcedRoute(org.apache.http.params.HttpParams);
1801    method @Deprecated public static java.net.InetAddress getLocalAddress(org.apache.http.params.HttpParams);
1802    method @Deprecated public static void setDefaultProxy(org.apache.http.params.HttpParams, org.apache.http.HttpHost);
1803    method @Deprecated public static void setForcedRoute(org.apache.http.params.HttpParams, org.apache.http.conn.routing.HttpRoute);
1804    method @Deprecated public static void setLocalAddress(org.apache.http.params.HttpParams, java.net.InetAddress);
1805    field @Deprecated public static final org.apache.http.HttpHost NO_HOST;
1806    field @Deprecated public static final org.apache.http.conn.routing.HttpRoute NO_ROUTE;
1807  }
1808
1809}
1810
1811package org.apache.http.conn.routing {
1812
1813  @Deprecated public class BasicRouteDirector implements org.apache.http.conn.routing.HttpRouteDirector {
1814    ctor @Deprecated public BasicRouteDirector();
1815    method @Deprecated protected int directStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1816    method @Deprecated protected int firstStep(org.apache.http.conn.routing.RouteInfo);
1817    method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1818    method @Deprecated protected int proxiedStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1819  }
1820
1821  @Deprecated public final class HttpRoute implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
1822    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);
1823    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);
1824    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, boolean);
1825    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost);
1826    ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.HttpHost, boolean);
1827    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1828    method @Deprecated public int getHopCount();
1829    method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1830    method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1831    method @Deprecated public java.net.InetAddress getLocalAddress();
1832    method @Deprecated public org.apache.http.HttpHost getProxyHost();
1833    method @Deprecated public org.apache.http.HttpHost getTargetHost();
1834    method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1835    method @Deprecated public boolean isLayered();
1836    method @Deprecated public boolean isSecure();
1837    method @Deprecated public boolean isTunnelled();
1838  }
1839
1840  @Deprecated public interface HttpRouteDirector {
1841    method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteInfo);
1842    field @Deprecated public static final int COMPLETE = 0; // 0x0
1843    field @Deprecated public static final int CONNECT_PROXY = 2; // 0x2
1844    field @Deprecated public static final int CONNECT_TARGET = 1; // 0x1
1845    field @Deprecated public static final int LAYER_PROTOCOL = 5; // 0x5
1846    field @Deprecated public static final int TUNNEL_PROXY = 4; // 0x4
1847    field @Deprecated public static final int TUNNEL_TARGET = 3; // 0x3
1848    field @Deprecated public static final int UNREACHABLE = -1; // 0xffffffff
1849  }
1850
1851  @Deprecated public interface HttpRoutePlanner {
1852    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;
1853  }
1854
1855  @Deprecated public interface RouteInfo {
1856    method @Deprecated public int getHopCount();
1857    method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1858    method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1859    method @Deprecated public java.net.InetAddress getLocalAddress();
1860    method @Deprecated public org.apache.http.HttpHost getProxyHost();
1861    method @Deprecated public org.apache.http.HttpHost getTargetHost();
1862    method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1863    method @Deprecated public boolean isLayered();
1864    method @Deprecated public boolean isSecure();
1865    method @Deprecated public boolean isTunnelled();
1866  }
1867
1868  @Deprecated public enum RouteInfo.LayerType {
1869    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType LAYERED;
1870    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType PLAIN;
1871  }
1872
1873  @Deprecated public enum RouteInfo.TunnelType {
1874    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType PLAIN;
1875    enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType TUNNELLED;
1876  }
1877
1878  @Deprecated public final class RouteTracker implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
1879    ctor @Deprecated public RouteTracker(org.apache.http.HttpHost, java.net.InetAddress);
1880    ctor @Deprecated public RouteTracker(org.apache.http.conn.routing.HttpRoute);
1881    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1882    method @Deprecated public void connectProxy(org.apache.http.HttpHost, boolean);
1883    method @Deprecated public void connectTarget(boolean);
1884    method @Deprecated public int getHopCount();
1885    method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1886    method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1887    method @Deprecated public java.net.InetAddress getLocalAddress();
1888    method @Deprecated public org.apache.http.HttpHost getProxyHost();
1889    method @Deprecated public org.apache.http.HttpHost getTargetHost();
1890    method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1891    method @Deprecated public boolean isConnected();
1892    method @Deprecated public boolean isLayered();
1893    method @Deprecated public boolean isSecure();
1894    method @Deprecated public boolean isTunnelled();
1895    method @Deprecated public void layerProtocol(boolean);
1896    method @Deprecated public org.apache.http.conn.routing.HttpRoute toRoute();
1897    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean);
1898    method @Deprecated public void tunnelTarget(boolean);
1899  }
1900
1901}
1902
1903package org.apache.http.conn.scheme {
1904
1905  @Deprecated public final class PlainSocketFactory implements org.apache.http.conn.scheme.SocketFactory {
1906    ctor @Deprecated public PlainSocketFactory(org.apache.http.conn.scheme.HostNameResolver);
1907    ctor @Deprecated public PlainSocketFactory();
1908    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;
1909    method @Deprecated public java.net.Socket createSocket();
1910    method @Deprecated public static org.apache.http.conn.scheme.PlainSocketFactory getSocketFactory();
1911    method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentException;
1912  }
1913
1914  @Deprecated public final class Scheme {
1915    ctor @Deprecated public Scheme(String, org.apache.http.conn.scheme.SocketFactory, int);
1916    method @Deprecated public int getDefaultPort();
1917    method @Deprecated public String getName();
1918    method @Deprecated public org.apache.http.conn.scheme.SocketFactory getSocketFactory();
1919    method @Deprecated public boolean isLayered();
1920    method @Deprecated public int resolvePort(int);
1921  }
1922
1923  @Deprecated public final class SchemeRegistry {
1924    ctor @Deprecated public SchemeRegistry();
1925    method @Deprecated public org.apache.http.conn.scheme.Scheme get(String);
1926    method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(String);
1927    method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(org.apache.http.HttpHost);
1928    method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1929    method @Deprecated public org.apache.http.conn.scheme.Scheme register(org.apache.http.conn.scheme.Scheme);
1930    method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.conn.scheme.Scheme>);
1931    method @Deprecated public org.apache.http.conn.scheme.Scheme unregister(String);
1932  }
1933
1934}
1935
1936package org.apache.http.conn.util {
1937
1938  @Deprecated public class InetAddressUtils {
1939    method @Deprecated public static boolean isIPv4Address(String);
1940    method @Deprecated public static boolean isIPv6Address(String);
1941    method @Deprecated public static boolean isIPv6HexCompressedAddress(String);
1942    method @Deprecated public static boolean isIPv6StdAddress(String);
1943  }
1944
1945}
1946
1947package org.apache.http.cookie {
1948
1949  @Deprecated public interface ClientCookie extends org.apache.http.cookie.Cookie {
1950    method @Deprecated public boolean containsAttribute(String);
1951    method @Deprecated public String getAttribute(String);
1952    field @Deprecated public static final String COMMENTURL_ATTR = "commenturl";
1953    field @Deprecated public static final String COMMENT_ATTR = "comment";
1954    field @Deprecated public static final String DISCARD_ATTR = "discard";
1955    field @Deprecated public static final String DOMAIN_ATTR = "domain";
1956    field @Deprecated public static final String EXPIRES_ATTR = "expires";
1957    field @Deprecated public static final String MAX_AGE_ATTR = "max-age";
1958    field @Deprecated public static final String PATH_ATTR = "path";
1959    field @Deprecated public static final String PORT_ATTR = "port";
1960    field @Deprecated public static final String SECURE_ATTR = "secure";
1961    field @Deprecated public static final String VERSION_ATTR = "version";
1962  }
1963
1964  @Deprecated public interface Cookie {
1965    method @Deprecated public String getComment();
1966    method @Deprecated public String getCommentURL();
1967    method @Deprecated public String getDomain();
1968    method @Deprecated public java.util.Date getExpiryDate();
1969    method @Deprecated public String getName();
1970    method @Deprecated public String getPath();
1971    method @Deprecated public int[] getPorts();
1972    method @Deprecated public String getValue();
1973    method @Deprecated public int getVersion();
1974    method @Deprecated public boolean isExpired(java.util.Date);
1975    method @Deprecated public boolean isPersistent();
1976    method @Deprecated public boolean isSecure();
1977  }
1978
1979  @Deprecated public interface CookieAttributeHandler {
1980    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
1981    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
1982    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
1983  }
1984
1985  @Deprecated public class CookieIdentityComparator implements java.util.Comparator<org.apache.http.cookie.Cookie> java.io.Serializable {
1986    ctor @Deprecated public CookieIdentityComparator();
1987    method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie);
1988  }
1989
1990  @Deprecated public final class CookieOrigin {
1991    ctor @Deprecated public CookieOrigin(String, int, String, boolean);
1992    method @Deprecated public String getHost();
1993    method @Deprecated public String getPath();
1994    method @Deprecated public int getPort();
1995    method @Deprecated public boolean isSecure();
1996  }
1997
1998  @Deprecated public class CookiePathComparator implements java.util.Comparator<org.apache.http.cookie.Cookie> java.io.Serializable {
1999    ctor @Deprecated public CookiePathComparator();
2000    method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie);
2001  }
2002
2003  @Deprecated public interface CookieSpec {
2004    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
2005    method @Deprecated public int getVersion();
2006    method @Deprecated public org.apache.http.Header getVersionHeader();
2007    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
2008    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;
2009    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
2010  }
2011
2012  @Deprecated public interface CookieSpecFactory {
2013    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
2014  }
2015
2016  @Deprecated public final class CookieSpecRegistry {
2017    ctor @Deprecated public CookieSpecRegistry();
2018    method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String, org.apache.http.params.HttpParams) throws java.lang.IllegalStateException;
2019    method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String) throws java.lang.IllegalStateException;
2020    method @Deprecated public java.util.List<java.lang.String> getSpecNames();
2021    method @Deprecated public void register(String, org.apache.http.cookie.CookieSpecFactory);
2022    method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.cookie.CookieSpecFactory>);
2023    method @Deprecated public void unregister(String);
2024  }
2025
2026  @Deprecated public class MalformedCookieException extends org.apache.http.ProtocolException {
2027    ctor @Deprecated public MalformedCookieException();
2028    ctor @Deprecated public MalformedCookieException(String);
2029    ctor @Deprecated public MalformedCookieException(String, Throwable);
2030  }
2031
2032  @Deprecated public interface SM {
2033    field @Deprecated public static final String COOKIE = "Cookie";
2034    field @Deprecated public static final String COOKIE2 = "Cookie2";
2035    field @Deprecated public static final String SET_COOKIE = "Set-Cookie";
2036    field @Deprecated public static final String SET_COOKIE2 = "Set-Cookie2";
2037  }
2038
2039  @Deprecated public interface SetCookie extends org.apache.http.cookie.Cookie {
2040    method @Deprecated public void setComment(String);
2041    method @Deprecated public void setDomain(String);
2042    method @Deprecated public void setExpiryDate(java.util.Date);
2043    method @Deprecated public void setPath(String);
2044    method @Deprecated public void setSecure(boolean);
2045    method @Deprecated public void setValue(String);
2046    method @Deprecated public void setVersion(int);
2047  }
2048
2049  @Deprecated public interface SetCookie2 extends org.apache.http.cookie.SetCookie {
2050    method @Deprecated public void setCommentURL(String);
2051    method @Deprecated public void setDiscard(boolean);
2052    method @Deprecated public void setPorts(int[]);
2053  }
2054
2055}
2056
2057package org.apache.http.cookie.params {
2058
2059  @Deprecated public interface CookieSpecPNames {
2060    field @Deprecated public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
2061    field @Deprecated public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
2062  }
2063
2064  @Deprecated public class CookieSpecParamBean extends org.apache.http.params.HttpAbstractParamBean {
2065    ctor @Deprecated public CookieSpecParamBean(org.apache.http.params.HttpParams);
2066    method @Deprecated public void setDatePatterns(java.util.Collection<java.lang.String>);
2067    method @Deprecated public void setSingleHeader(boolean);
2068  }
2069
2070}
2071
2072package org.apache.http.entity {
2073
2074  @Deprecated public abstract class AbstractHttpEntity implements org.apache.http.HttpEntity {
2075    ctor @Deprecated protected AbstractHttpEntity();
2076    method @Deprecated public void consumeContent() throws java.io.IOException, java.lang.UnsupportedOperationException;
2077    method @Deprecated public org.apache.http.Header getContentEncoding();
2078    method @Deprecated public org.apache.http.Header getContentType();
2079    method @Deprecated public boolean isChunked();
2080    method @Deprecated public void setChunked(boolean);
2081    method @Deprecated public void setContentEncoding(org.apache.http.Header);
2082    method @Deprecated public void setContentEncoding(String);
2083    method @Deprecated public void setContentType(org.apache.http.Header);
2084    method @Deprecated public void setContentType(String);
2085    field @Deprecated protected boolean chunked;
2086    field @Deprecated protected org.apache.http.Header contentEncoding;
2087    field @Deprecated protected org.apache.http.Header contentType;
2088  }
2089
2090  @Deprecated public class BasicHttpEntity extends org.apache.http.entity.AbstractHttpEntity {
2091    ctor @Deprecated public BasicHttpEntity();
2092    method @Deprecated public void consumeContent() throws java.io.IOException;
2093    method @Deprecated public java.io.InputStream getContent() throws java.lang.IllegalStateException;
2094    method @Deprecated public long getContentLength();
2095    method @Deprecated public boolean isRepeatable();
2096    method @Deprecated public boolean isStreaming();
2097    method @Deprecated public void setContent(java.io.InputStream);
2098    method @Deprecated public void setContentLength(long);
2099    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2100  }
2101
2102  @Deprecated public class BufferedHttpEntity extends org.apache.http.entity.HttpEntityWrapper {
2103    ctor @Deprecated public BufferedHttpEntity(org.apache.http.HttpEntity) throws java.io.IOException;
2104  }
2105
2106  @Deprecated public class ByteArrayEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
2107    ctor @Deprecated public ByteArrayEntity(byte[]);
2108    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2109    method @Deprecated public java.io.InputStream getContent();
2110    method @Deprecated public long getContentLength();
2111    method @Deprecated public boolean isRepeatable();
2112    method @Deprecated public boolean isStreaming();
2113    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2114    field @Deprecated protected final byte[] content;
2115  }
2116
2117  @Deprecated public interface ContentLengthStrategy {
2118    method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
2119    field @Deprecated public static final int CHUNKED = -2; // 0xfffffffe
2120    field @Deprecated public static final int IDENTITY = -1; // 0xffffffff
2121  }
2122
2123  @Deprecated public interface ContentProducer {
2124    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2125  }
2126
2127  @Deprecated public class EntityTemplate extends org.apache.http.entity.AbstractHttpEntity {
2128    ctor @Deprecated public EntityTemplate(org.apache.http.entity.ContentProducer);
2129    method @Deprecated public void consumeContent() throws java.io.IOException;
2130    method @Deprecated public java.io.InputStream getContent();
2131    method @Deprecated public long getContentLength();
2132    method @Deprecated public boolean isRepeatable();
2133    method @Deprecated public boolean isStreaming();
2134    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2135  }
2136
2137  @Deprecated public class FileEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
2138    ctor @Deprecated public FileEntity(java.io.File, String);
2139    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2140    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2141    method @Deprecated public long getContentLength();
2142    method @Deprecated public boolean isRepeatable();
2143    method @Deprecated public boolean isStreaming();
2144    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2145    field @Deprecated protected final java.io.File file;
2146  }
2147
2148  @Deprecated public class HttpEntityWrapper implements org.apache.http.HttpEntity {
2149    ctor @Deprecated public HttpEntityWrapper(org.apache.http.HttpEntity);
2150    method @Deprecated public void consumeContent() throws java.io.IOException;
2151    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2152    method @Deprecated public org.apache.http.Header getContentEncoding();
2153    method @Deprecated public long getContentLength();
2154    method @Deprecated public org.apache.http.Header getContentType();
2155    method @Deprecated public boolean isChunked();
2156    method @Deprecated public boolean isRepeatable();
2157    method @Deprecated public boolean isStreaming();
2158    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2159    field @Deprecated protected org.apache.http.HttpEntity wrappedEntity;
2160  }
2161
2162  @Deprecated public class InputStreamEntity extends org.apache.http.entity.AbstractHttpEntity {
2163    ctor @Deprecated public InputStreamEntity(java.io.InputStream, long);
2164    method @Deprecated public void consumeContent() throws java.io.IOException;
2165    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2166    method @Deprecated public long getContentLength();
2167    method @Deprecated public boolean isRepeatable();
2168    method @Deprecated public boolean isStreaming();
2169    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2170  }
2171
2172  @Deprecated public class SerializableEntity extends org.apache.http.entity.AbstractHttpEntity {
2173    ctor @Deprecated public SerializableEntity(java.io.Serializable, boolean) throws java.io.IOException;
2174    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.IllegalStateException;
2175    method @Deprecated public long getContentLength();
2176    method @Deprecated public boolean isRepeatable();
2177    method @Deprecated public boolean isStreaming();
2178    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2179  }
2180
2181  @Deprecated public class StringEntity extends org.apache.http.entity.AbstractHttpEntity implements java.lang.Cloneable {
2182    ctor @Deprecated public StringEntity(String, String) throws java.io.UnsupportedEncodingException;
2183    ctor @Deprecated public StringEntity(String) throws java.io.UnsupportedEncodingException;
2184    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2185    method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2186    method @Deprecated public long getContentLength();
2187    method @Deprecated public boolean isRepeatable();
2188    method @Deprecated public boolean isStreaming();
2189    method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2190    field @Deprecated protected final byte[] content;
2191  }
2192
2193}
2194
2195package org.apache.http.impl {
2196
2197  @Deprecated public abstract class AbstractHttpClientConnection implements org.apache.http.HttpClientConnection {
2198    ctor @Deprecated public AbstractHttpClientConnection();
2199    method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2200    method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializer();
2201    method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2202    method @Deprecated protected org.apache.http.HttpResponseFactory createHttpResponseFactory();
2203    method @Deprecated protected org.apache.http.io.HttpMessageWriter createRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2204    method @Deprecated protected org.apache.http.io.HttpMessageParser createResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
2205    method @Deprecated protected void doFlush() throws java.io.IOException;
2206    method @Deprecated public void flush() throws java.io.IOException;
2207    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2208    method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2209    method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2210    method @Deprecated public boolean isStale();
2211    method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2212    method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
2213    method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
2214    method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
2215  }
2216
2217  @Deprecated public abstract class AbstractHttpServerConnection implements org.apache.http.HttpServerConnection {
2218    ctor @Deprecated public AbstractHttpServerConnection();
2219    method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2220    method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializer();
2221    method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2222    method @Deprecated protected org.apache.http.HttpRequestFactory createHttpRequestFactory();
2223    method @Deprecated protected org.apache.http.io.HttpMessageParser createRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.HttpRequestFactory, org.apache.http.params.HttpParams);
2224    method @Deprecated protected org.apache.http.io.HttpMessageWriter createResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2225    method @Deprecated protected void doFlush() throws java.io.IOException;
2226    method @Deprecated public void flush() throws java.io.IOException;
2227    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2228    method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.SessionOutputBuffer, org.apache.http.params.HttpParams);
2229    method @Deprecated public boolean isStale();
2230    method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
2231    method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.http.HttpException, java.io.IOException;
2232    method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2233    method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2234  }
2235
2236  @Deprecated public class DefaultConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrategy {
2237    ctor @Deprecated public DefaultConnectionReuseStrategy();
2238    method @Deprecated protected org.apache.http.TokenIterator createTokenIterator(org.apache.http.HeaderIterator);
2239    method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
2240  }
2241
2242  @Deprecated public class DefaultHttpClientConnection extends org.apache.http.impl.SocketHttpClientConnection {
2243    ctor @Deprecated public DefaultHttpClientConnection();
2244    method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
2245  }
2246
2247  @Deprecated public class DefaultHttpRequestFactory implements org.apache.http.HttpRequestFactory {
2248    ctor @Deprecated public DefaultHttpRequestFactory();
2249    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) throws org.apache.http.MethodNotSupportedException;
2250    method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.apache.http.MethodNotSupportedException;
2251  }
2252
2253  @Deprecated public class DefaultHttpResponseFactory implements org.apache.http.HttpResponseFactory {
2254    ctor @Deprecated public DefaultHttpResponseFactory(org.apache.http.ReasonPhraseCatalog);
2255    ctor @Deprecated public DefaultHttpResponseFactory();
2256    method @Deprecated protected java.util.Locale determineLocale(org.apache.http.protocol.HttpContext);
2257    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVersion, int, org.apache.http.protocol.HttpContext);
2258    method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine, org.apache.http.protocol.HttpContext);
2259    field @Deprecated protected final org.apache.http.ReasonPhraseCatalog reasonCatalog;
2260  }
2261
2262  @Deprecated public class DefaultHttpServerConnection extends org.apache.http.impl.SocketHttpServerConnection {
2263    ctor @Deprecated public DefaultHttpServerConnection();
2264    method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
2265  }
2266
2267  @Deprecated public class EnglishReasonPhraseCatalog implements org.apache.http.ReasonPhraseCatalog {
2268    ctor @Deprecated protected EnglishReasonPhraseCatalog();
2269    method @Deprecated public String getReason(int, java.util.Locale);
2270    field @Deprecated public static final org.apache.http.impl.EnglishReasonPhraseCatalog INSTANCE;
2271  }
2272
2273  @Deprecated public class HttpConnectionMetricsImpl implements org.apache.http.HttpConnectionMetrics {
2274    ctor @Deprecated public HttpConnectionMetricsImpl(org.apache.http.io.HttpTransportMetrics, org.apache.http.io.HttpTransportMetrics);
2275    method @Deprecated public Object getMetric(String);
2276    method @Deprecated public long getReceivedBytesCount();
2277    method @Deprecated public long getRequestCount();
2278    method @Deprecated public long getResponseCount();
2279    method @Deprecated public long getSentBytesCount();
2280    method @Deprecated public void incrementRequestCount();
2281    method @Deprecated public void incrementResponseCount();
2282    method @Deprecated public void reset();
2283    method @Deprecated public void setMetric(String, Object);
2284    field @Deprecated public static final String RECEIVED_BYTES_COUNT = "http.received-bytes-count";
2285    field @Deprecated public static final String REQUEST_COUNT = "http.request-count";
2286    field @Deprecated public static final String RESPONSE_COUNT = "http.response-count";
2287    field @Deprecated public static final String SENT_BYTES_COUNT = "http.sent-bytes-count";
2288  }
2289
2290  @Deprecated public class NoConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrategy {
2291    ctor @Deprecated public NoConnectionReuseStrategy();
2292    method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
2293  }
2294
2295  @Deprecated public class SocketHttpClientConnection extends org.apache.http.impl.AbstractHttpClientConnection implements org.apache.http.HttpInetConnection {
2296    ctor @Deprecated public SocketHttpClientConnection();
2297    method @Deprecated protected void assertNotOpen();
2298    method @Deprecated protected void assertOpen();
2299    method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
2300    method @Deprecated public void close() throws java.io.IOException;
2301    method @Deprecated protected org.apache.http.io.SessionInputBuffer createSessionInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2302    method @Deprecated protected org.apache.http.io.SessionOutputBuffer createSessionOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2303    method @Deprecated public java.net.InetAddress getLocalAddress();
2304    method @Deprecated public int getLocalPort();
2305    method @Deprecated public java.net.InetAddress getRemoteAddress();
2306    method @Deprecated public int getRemotePort();
2307    method @Deprecated protected java.net.Socket getSocket();
2308    method @Deprecated public int getSocketTimeout();
2309    method @Deprecated public boolean isOpen();
2310    method @Deprecated public void setSocketTimeout(int);
2311    method @Deprecated public void shutdown() throws java.io.IOException;
2312  }
2313
2314  @Deprecated public class SocketHttpServerConnection extends org.apache.http.impl.AbstractHttpServerConnection implements org.apache.http.HttpInetConnection {
2315    ctor @Deprecated public SocketHttpServerConnection();
2316    method @Deprecated protected void assertNotOpen();
2317    method @Deprecated protected void assertOpen();
2318    method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws java.io.IOException;
2319    method @Deprecated public void close() throws java.io.IOException;
2320    method @Deprecated protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2321    method @Deprecated protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
2322    method @Deprecated public java.net.InetAddress getLocalAddress();
2323    method @Deprecated public int getLocalPort();
2324    method @Deprecated public java.net.InetAddress getRemoteAddress();
2325    method @Deprecated public int getRemotePort();
2326    method @Deprecated protected java.net.Socket getSocket();
2327    method @Deprecated public int getSocketTimeout();
2328    method @Deprecated public boolean isOpen();
2329    method @Deprecated public void setSocketTimeout(int);
2330    method @Deprecated public void shutdown() throws java.io.IOException;
2331  }
2332
2333}
2334
2335package org.apache.http.impl.auth {
2336
2337  @Deprecated public abstract class AuthSchemeBase implements org.apache.http.auth.AuthScheme {
2338    ctor @Deprecated public AuthSchemeBase();
2339    method @Deprecated public boolean isProxy();
2340    method @Deprecated protected abstract void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
2341    method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.auth.MalformedChallengeException;
2342  }
2343
2344  @Deprecated public class BasicScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2345    ctor @Deprecated public BasicScheme();
2346    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
2347    method @Deprecated public static org.apache.http.Header authenticate(org.apache.http.auth.Credentials, String, boolean);
2348    method @Deprecated public String getSchemeName();
2349    method @Deprecated public boolean isComplete();
2350    method @Deprecated public boolean isConnectionBased();
2351  }
2352
2353  @Deprecated public class BasicSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2354    ctor @Deprecated public BasicSchemeFactory();
2355    method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
2356  }
2357
2358  @Deprecated public class DigestScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2359    ctor @Deprecated public DigestScheme();
2360    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
2361    method @Deprecated public static String createCnonce();
2362    method @Deprecated public String getSchemeName();
2363    method @Deprecated public boolean isComplete();
2364    method @Deprecated public boolean isConnectionBased();
2365    method @Deprecated public void overrideParamter(String, String);
2366  }
2367
2368  @Deprecated public class DigestSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2369    ctor @Deprecated public DigestSchemeFactory();
2370    method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpParams);
2371  }
2372
2373  @Deprecated public interface NTLMEngine {
2374    method @Deprecated public String generateType1Msg(String, String) throws org.apache.http.impl.auth.NTLMEngineException;
2375    method @Deprecated public String generateType3Msg(String, String, String, String, String) throws org.apache.http.impl.auth.NTLMEngineException;
2376  }
2377
2378  @Deprecated public class NTLMEngineException extends org.apache.http.auth.AuthenticationException {
2379    ctor @Deprecated public NTLMEngineException();
2380    ctor @Deprecated public NTLMEngineException(String);
2381    ctor @Deprecated public NTLMEngineException(String, Throwable);
2382  }
2383
2384  @Deprecated public class NTLMScheme extends org.apache.http.impl.auth.AuthSchemeBase {
2385    ctor @Deprecated public NTLMScheme(org.apache.http.impl.auth.NTLMEngine);
2386    method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, org.apache.http.HttpRequest) throws org.apache.http.auth.AuthenticationException;
2387    method @Deprecated public String getParameter(String);
2388    method @Deprecated public String getRealm();
2389    method @Deprecated public String getSchemeName();
2390    method @Deprecated public boolean isComplete();
2391    method @Deprecated public boolean isConnectionBased();
2392    method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
2393  }
2394
2395  @Deprecated public abstract class RFC2617Scheme extends org.apache.http.impl.auth.AuthSchemeBase {
2396    ctor @Deprecated public RFC2617Scheme();
2397    method @Deprecated public String getParameter(String);
2398    method @Deprecated protected java.util.Map<java.lang.String,java.lang.String> getParameters();
2399    method @Deprecated public String getRealm();
2400    method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) throws org.apache.http.auth.MalformedChallengeException;
2401  }
2402
2403  @Deprecated public class UnsupportedDigestAlgorithmException extends java.lang.RuntimeException {
2404    ctor @Deprecated public UnsupportedDigestAlgorithmException();
2405    ctor @Deprecated public UnsupportedDigestAlgorithmException(String);
2406    ctor @Deprecated public UnsupportedDigestAlgorithmException(String, Throwable);
2407  }
2408
2409}
2410
2411package org.apache.http.impl.client {
2412
2413  @Deprecated public abstract class AbstractAuthenticationHandler implements org.apache.http.client.AuthenticationHandler {
2414    ctor @Deprecated public AbstractAuthenticationHandler();
2415    method @Deprecated protected java.util.List<java.lang.String> getAuthPreferences();
2416    method @Deprecated protected java.util.Map<java.lang.String,org.apache.http.Header> parseChallenges(org.apache.http.Header[]) throws org.apache.http.auth.MalformedChallengeException;
2417    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;
2418  }
2419
2420  @Deprecated public abstract class AbstractHttpClient implements org.apache.http.client.HttpClient {
2421    ctor @Deprecated protected AbstractHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache.http.params.HttpParams);
2422    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
2423    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
2424    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
2425    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
2426    method @Deprecated public void clearRequestInterceptors();
2427    method @Deprecated public void clearResponseInterceptors();
2428    method @Deprecated protected abstract org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
2429    method @Deprecated protected abstract org.apache.http.conn.ClientConnectionManager createClientConnectionManager();
2430    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);
2431    method @Deprecated protected abstract org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeepAliveStrategy();
2432    method @Deprecated protected abstract org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy();
2433    method @Deprecated protected abstract org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
2434    method @Deprecated protected abstract org.apache.http.client.CookieStore createCookieStore();
2435    method @Deprecated protected abstract org.apache.http.client.CredentialsProvider createCredentialsProvider();
2436    method @Deprecated protected abstract org.apache.http.protocol.HttpContext createHttpContext();
2437    method @Deprecated protected abstract org.apache.http.params.HttpParams createHttpParams();
2438    method @Deprecated protected abstract org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
2439    method @Deprecated protected abstract org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetryHandler();
2440    method @Deprecated protected abstract org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner();
2441    method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createProxyAuthenticationHandler();
2442    method @Deprecated protected abstract org.apache.http.client.RedirectHandler createRedirectHandler();
2443    method @Deprecated protected abstract org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
2444    method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createTargetAuthenticationHandler();
2445    method @Deprecated protected abstract org.apache.http.client.UserTokenHandler createUserTokenHandler();
2446    method @Deprecated protected org.apache.http.params.HttpParams determineParams(org.apache.http.HttpRequest);
2447    method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.methods.HttpUriRequest) throws org.apache.http.client.ClientProtocolException, java.io.IOException;
2448    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;
2449    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;
2450    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;
2451    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;
2452    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;
2453    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;
2454    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;
2455    method @Deprecated public final org.apache.http.auth.AuthSchemeRegistry getAuthSchemes();
2456    method @Deprecated public final org.apache.http.conn.ConnectionKeepAliveStrategy getConnectionKeepAliveStrategy();
2457    method @Deprecated public final org.apache.http.conn.ClientConnectionManager getConnectionManager();
2458    method @Deprecated public final org.apache.http.ConnectionReuseStrategy getConnectionReuseStrategy();
2459    method @Deprecated public final org.apache.http.cookie.CookieSpecRegistry getCookieSpecs();
2460    method @Deprecated public final org.apache.http.client.CookieStore getCookieStore();
2461    method @Deprecated public final org.apache.http.client.CredentialsProvider getCredentialsProvider();
2462    method @Deprecated protected final org.apache.http.protocol.BasicHttpProcessor getHttpProcessor();
2463    method @Deprecated public final org.apache.http.client.HttpRequestRetryHandler getHttpRequestRetryHandler();
2464    method @Deprecated public final org.apache.http.params.HttpParams getParams();
2465    method @Deprecated public final org.apache.http.client.AuthenticationHandler getProxyAuthenticationHandler();
2466    method @Deprecated public final org.apache.http.client.RedirectHandler getRedirectHandler();
2467    method @Deprecated public final org.apache.http.protocol.HttpRequestExecutor getRequestExecutor();
2468    method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
2469    method @Deprecated public int getRequestInterceptorCount();
2470    method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
2471    method @Deprecated public int getResponseInterceptorCount();
2472    method @Deprecated public final org.apache.http.conn.routing.HttpRoutePlanner getRoutePlanner();
2473    method @Deprecated public final org.apache.http.client.AuthenticationHandler getTargetAuthenticationHandler();
2474    method @Deprecated public final org.apache.http.client.UserTokenHandler getUserTokenHandler();
2475    method @Deprecated public void removeRequestInterceptorByClass(Class<? extends org.apache.http.HttpRequestInterceptor>);
2476    method @Deprecated public void removeResponseInterceptorByClass(Class<? extends org.apache.http.HttpResponseInterceptor>);
2477    method @Deprecated public void setAuthSchemes(org.apache.http.auth.AuthSchemeRegistry);
2478    method @Deprecated public void setCookieSpecs(org.apache.http.cookie.CookieSpecRegistry);
2479    method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
2480    method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
2481    method @Deprecated public void setHttpRequestRetryHandler(org.apache.http.client.HttpRequestRetryHandler);
2482    method @Deprecated public void setKeepAliveStrategy(org.apache.http.conn.ConnectionKeepAliveStrategy);
2483    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
2484    method @Deprecated public void setProxyAuthenticationHandler(org.apache.http.client.AuthenticationHandler);
2485    method @Deprecated public void setRedirectHandler(org.apache.http.client.RedirectHandler);
2486    method @Deprecated public void setReuseStrategy(org.apache.http.ConnectionReuseStrategy);
2487    method @Deprecated public void setRoutePlanner(org.apache.http.conn.routing.HttpRoutePlanner);
2488    method @Deprecated public void setTargetAuthenticationHandler(org.apache.http.client.AuthenticationHandler);
2489    method @Deprecated public void setUserTokenHandler(org.apache.http.client.UserTokenHandler);
2490  }
2491
2492  @Deprecated public class BasicCookieStore implements org.apache.http.client.CookieStore {
2493    ctor @Deprecated public BasicCookieStore();
2494    method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
2495    method @Deprecated public void addCookies(org.apache.http.cookie.Cookie[]);
2496    method @Deprecated public void clear();
2497    method @Deprecated public boolean clearExpired(java.util.Date);
2498    method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
2499  }
2500
2501  @Deprecated public class BasicCredentialsProvider implements org.apache.http.client.CredentialsProvider {
2502    ctor @Deprecated public BasicCredentialsProvider();
2503    method @Deprecated public void clear();
2504    method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope);
2505    method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth.Credentials);
2506  }
2507
2508  @Deprecated public class BasicResponseHandler implements org.apache.http.client.ResponseHandler<java.lang.String> {
2509    ctor @Deprecated public BasicResponseHandler();
2510    method @Deprecated public String handleResponse(org.apache.http.HttpResponse) throws org.apache.http.client.HttpResponseException, java.io.IOException;
2511  }
2512
2513  @Deprecated public class ClientParamsStack extends org.apache.http.params.AbstractHttpParams {
2514    ctor @Deprecated public ClientParamsStack(org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
2515    ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack);
2516    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);
2517    method @Deprecated public org.apache.http.params.HttpParams copy();
2518    method @Deprecated public final org.apache.http.params.HttpParams getApplicationParams();
2519    method @Deprecated public final org.apache.http.params.HttpParams getClientParams();
2520    method @Deprecated public final org.apache.http.params.HttpParams getOverrideParams();
2521    method @Deprecated public Object getParameter(String);
2522    method @Deprecated public final org.apache.http.params.HttpParams getRequestParams();
2523    method @Deprecated public boolean removeParameter(String);
2524    method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object) throws java.lang.UnsupportedOperationException;
2525    field @Deprecated protected final org.apache.http.params.HttpParams applicationParams;
2526    field @Deprecated protected final org.apache.http.params.HttpParams clientParams;
2527    field @Deprecated protected final org.apache.http.params.HttpParams overrideParams;
2528    field @Deprecated protected final org.apache.http.params.HttpParams requestParams;
2529  }
2530
2531  @Deprecated public class DefaultConnectionKeepAliveStrategy implements org.apache.http.conn.ConnectionKeepAliveStrategy {
2532    ctor @Deprecated public DefaultConnectionKeepAliveStrategy();
2533    method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
2534  }
2535
2536  @Deprecated public class DefaultHttpClient extends org.apache.http.impl.client.AbstractHttpClient {
2537    ctor @Deprecated public DefaultHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache.http.params.HttpParams);
2538    ctor @Deprecated public DefaultHttpClient(org.apache.http.params.HttpParams);
2539    ctor @Deprecated public DefaultHttpClient();
2540    method @Deprecated protected org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
2541    method @Deprecated protected org.apache.http.conn.ClientConnectionManager createClientConnectionManager();
2542    method @Deprecated protected org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeepAliveStrategy();
2543    method @Deprecated protected org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy();
2544    method @Deprecated protected org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
2545    method @Deprecated protected org.apache.http.client.CookieStore createCookieStore();
2546    method @Deprecated protected org.apache.http.client.CredentialsProvider createCredentialsProvider();
2547    method @Deprecated protected org.apache.http.protocol.HttpContext createHttpContext();
2548    method @Deprecated protected org.apache.http.params.HttpParams createHttpParams();
2549    method @Deprecated protected org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
2550    method @Deprecated protected org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetryHandler();
2551    method @Deprecated protected org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner();
2552    method @Deprecated protected org.apache.http.client.AuthenticationHandler createProxyAuthenticationHandler();
2553    method @Deprecated protected org.apache.http.client.RedirectHandler createRedirectHandler();
2554    method @Deprecated protected org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
2555    method @Deprecated protected org.apache.http.client.AuthenticationHandler createTargetAuthenticationHandler();
2556    method @Deprecated protected org.apache.http.client.UserTokenHandler createUserTokenHandler();
2557  }
2558
2559  @Deprecated public class DefaultHttpRequestRetryHandler implements org.apache.http.client.HttpRequestRetryHandler {
2560    ctor @Deprecated public DefaultHttpRequestRetryHandler(int, boolean);
2561    ctor @Deprecated public DefaultHttpRequestRetryHandler();
2562    method @Deprecated public int getRetryCount();
2563    method @Deprecated public boolean isRequestSentRetryEnabled();
2564    method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.HttpContext);
2565  }
2566
2567  @Deprecated public class DefaultProxyAuthenticationHandler extends org.apache.http.impl.client.AbstractAuthenticationHandler {
2568    ctor @Deprecated public DefaultProxyAuthenticationHandler();
2569    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;
2570    method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
2571  }
2572
2573  @Deprecated public class DefaultRedirectHandler implements org.apache.http.client.RedirectHandler {
2574    ctor @Deprecated public DefaultRedirectHandler();
2575    method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.ProtocolException;
2576    method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
2577  }
2578
2579  @Deprecated public class DefaultRequestDirector implements org.apache.http.client.RequestDirector {
2580    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);
2581    method @Deprecated protected org.apache.http.HttpRequest createConnectRequest(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext);
2582    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;
2583    method @Deprecated protected boolean createTunnelToTarget(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2584    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;
2585    method @Deprecated protected void establishRoute(org.apache.http.conn.routing.HttpRoute, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
2586    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;
2587    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;
2588    method @Deprecated protected void releaseConnection();
2589    method @Deprecated protected void rewriteRequestURI(org.apache.http.impl.client.RequestWrapper, org.apache.http.conn.routing.HttpRoute) throws org.apache.http.ProtocolException;
2590    field @Deprecated protected final org.apache.http.conn.ClientConnectionManager connManager;
2591    field @Deprecated protected final org.apache.http.protocol.HttpProcessor httpProcessor;
2592    field @Deprecated protected final org.apache.http.conn.ConnectionKeepAliveStrategy keepAliveStrategy;
2593    field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
2594    field @Deprecated protected final org.apache.http.params.HttpParams params;
2595    field @Deprecated protected final org.apache.http.client.RedirectHandler redirectHandler;
2596    field @Deprecated protected final org.apache.http.protocol.HttpRequestExecutor requestExec;
2597    field @Deprecated protected final org.apache.http.client.HttpRequestRetryHandler retryHandler;
2598    field @Deprecated protected final org.apache.http.ConnectionReuseStrategy reuseStrategy;
2599    field @Deprecated protected final org.apache.http.conn.routing.HttpRoutePlanner routePlanner;
2600  }
2601
2602  @Deprecated public class DefaultTargetAuthenticationHandler extends org.apache.http.impl.client.AbstractAuthenticationHandler {
2603    ctor @Deprecated public DefaultTargetAuthenticationHandler();
2604    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;
2605    method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext);
2606  }
2607
2608  @Deprecated public class DefaultUserTokenHandler implements org.apache.http.client.UserTokenHandler {
2609    ctor @Deprecated public DefaultUserTokenHandler();
2610    method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
2611  }
2612
2613  @Deprecated public class EntityEnclosingRequestWrapper extends org.apache.http.impl.client.RequestWrapper implements org.apache.http.HttpEntityEnclosingRequest {
2614    ctor @Deprecated public EntityEnclosingRequestWrapper(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.ProtocolException;
2615    method @Deprecated public boolean expectContinue();
2616    method @Deprecated public org.apache.http.HttpEntity getEntity();
2617    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
2618  }
2619
2620  @Deprecated public class RedirectLocations {
2621    ctor @Deprecated public RedirectLocations();
2622    method @Deprecated public void add(java.net.URI);
2623    method @Deprecated public boolean contains(java.net.URI);
2624    method @Deprecated public boolean remove(java.net.URI);
2625  }
2626
2627  @Deprecated public class RequestWrapper extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.client.methods.HttpUriRequest {
2628    ctor @Deprecated public RequestWrapper(org.apache.http.HttpRequest) throws org.apache.http.ProtocolException;
2629    method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
2630    method @Deprecated public int getExecCount();
2631    method @Deprecated public String getMethod();
2632    method @Deprecated public org.apache.http.HttpRequest getOriginal();
2633    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
2634    method @Deprecated public org.apache.http.RequestLine getRequestLine();
2635    method @Deprecated public java.net.URI getURI();
2636    method @Deprecated public void incrementExecCount();
2637    method @Deprecated public boolean isAborted();
2638    method @Deprecated public boolean isRepeatable();
2639    method @Deprecated public void resetHeaders();
2640    method @Deprecated public void setMethod(String);
2641    method @Deprecated public void setProtocolVersion(org.apache.http.ProtocolVersion);
2642    method @Deprecated public void setURI(java.net.URI);
2643  }
2644
2645  @Deprecated public class RoutedRequest {
2646    ctor @Deprecated public RoutedRequest(org.apache.http.impl.client.RequestWrapper, org.apache.http.conn.routing.HttpRoute);
2647    method @Deprecated public final org.apache.http.impl.client.RequestWrapper getRequest();
2648    method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2649    field @Deprecated protected final org.apache.http.impl.client.RequestWrapper request;
2650    field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2651  }
2652
2653  @Deprecated public class TunnelRefusedException extends org.apache.http.HttpException {
2654    ctor @Deprecated public TunnelRefusedException(String, org.apache.http.HttpResponse);
2655    method @Deprecated public org.apache.http.HttpResponse getResponse();
2656  }
2657
2658}
2659
2660package org.apache.http.impl.conn {
2661
2662  @Deprecated public abstract class AbstractClientConnAdapter implements org.apache.http.conn.ManagedClientConnection {
2663    ctor @Deprecated protected AbstractClientConnAdapter(org.apache.http.conn.ClientConnectionManager, org.apache.http.conn.OperatedClientConnection);
2664    method @Deprecated public void abortConnection();
2665    method @Deprecated protected final void assertNotAborted() throws java.io.InterruptedIOException;
2666    method @Deprecated protected final void assertValid(org.apache.http.conn.OperatedClientConnection);
2667    method @Deprecated protected void detach();
2668    method @Deprecated public void flush() throws java.io.IOException;
2669    method @Deprecated public java.net.InetAddress getLocalAddress();
2670    method @Deprecated public int getLocalPort();
2671    method @Deprecated protected org.apache.http.conn.ClientConnectionManager getManager();
2672    method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2673    method @Deprecated public java.net.InetAddress getRemoteAddress();
2674    method @Deprecated public int getRemotePort();
2675    method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
2676    method @Deprecated public int getSocketTimeout();
2677    method @Deprecated protected org.apache.http.conn.OperatedClientConnection getWrappedConnection();
2678    method @Deprecated public boolean isMarkedReusable();
2679    method @Deprecated public boolean isOpen();
2680    method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2681    method @Deprecated public boolean isSecure();
2682    method @Deprecated public boolean isStale();
2683    method @Deprecated public void markReusable();
2684    method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apache.http.HttpException, java.io.IOException;
2685    method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.http.HttpException, java.io.IOException;
2686    method @Deprecated public void releaseConnection();
2687    method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throws org.apache.http.HttpException, java.io.IOException;
2688    method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.http.HttpException, java.io.IOException;
2689    method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
2690    method @Deprecated public void setSocketTimeout(int);
2691    method @Deprecated public void unmarkReusable();
2692  }
2693
2694  @Deprecated public abstract class AbstractPoolEntry {
2695    ctor @Deprecated protected AbstractPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.http.conn.routing.HttpRoute);
2696    method @Deprecated public Object getState();
2697    method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2698    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;
2699    method @Deprecated public void setState(Object);
2700    method @Deprecated protected void shutdownEntry();
2701    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2702    method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2703    field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator connOperator;
2704    field @Deprecated protected final org.apache.http.conn.OperatedClientConnection connection;
2705    field @Deprecated protected volatile org.apache.http.conn.routing.HttpRoute route;
2706    field @Deprecated protected volatile Object state;
2707    field @Deprecated protected volatile org.apache.http.conn.routing.RouteTracker tracker;
2708  }
2709
2710  @Deprecated public abstract class AbstractPooledConnAdapter extends org.apache.http.impl.conn.AbstractClientConnAdapter {
2711    ctor @Deprecated protected AbstractPooledConnAdapter(org.apache.http.conn.ClientConnectionManager, org.apache.http.impl.conn.AbstractPoolEntry);
2712    method @Deprecated protected final void assertAttached();
2713    method @Deprecated public void close() throws java.io.IOException;
2714    method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
2715    method @Deprecated public Object getState();
2716    method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2717    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;
2718    method @Deprecated public void setState(Object);
2719    method @Deprecated public void shutdown() throws java.io.IOException;
2720    method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2721    method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2722    field @Deprecated protected volatile org.apache.http.impl.conn.AbstractPoolEntry poolEntry;
2723  }
2724
2725  @Deprecated public class DefaultClientConnection extends org.apache.http.impl.SocketHttpClientConnection implements org.apache.http.conn.OperatedClientConnection {
2726    ctor @Deprecated public DefaultClientConnection();
2727    method @Deprecated public final java.net.Socket getSocket();
2728    method @Deprecated public final org.apache.http.HttpHost getTargetHost();
2729    method @Deprecated public final boolean isSecure();
2730    method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2731    method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.IOException;
2732    method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apache.http.params.HttpParams) throws java.io.IOException;
2733  }
2734
2735  @Deprecated public class DefaultClientConnectionOperator implements org.apache.http.conn.ClientConnectionOperator {
2736    ctor @Deprecated public DefaultClientConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
2737    method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
2738    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;
2739    method @Deprecated protected void prepareSocket(java.net.Socket, org.apache.http.protocol.HttpContext, org.apache.http.params.HttpParams) throws java.io.IOException;
2740    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;
2741    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2742  }
2743
2744  @Deprecated public class DefaultHttpRoutePlanner implements org.apache.http.conn.routing.HttpRoutePlanner {
2745    ctor @Deprecated public DefaultHttpRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry);
2746    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;
2747    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2748  }
2749
2750  @Deprecated public class DefaultResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
2751    ctor @Deprecated public DefaultResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
2752    method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInputBuffer) throws org.apache.http.HttpException, java.io.IOException;
2753  }
2754
2755  @Deprecated public class IdleConnectionHandler {
2756    ctor @Deprecated public IdleConnectionHandler();
2757    method @Deprecated public void add(org.apache.http.HttpConnection, long, java.util.concurrent.TimeUnit);
2758    method @Deprecated public void closeExpiredConnections();
2759    method @Deprecated public void closeIdleConnections(long);
2760    method @Deprecated public boolean remove(org.apache.http.HttpConnection);
2761    method @Deprecated public void removeAll();
2762  }
2763
2764  @Deprecated public class LoggingSessionInputBuffer implements org.apache.http.io.SessionInputBuffer {
2765    ctor @Deprecated public LoggingSessionInputBuffer(org.apache.http.io.SessionInputBuffer, org.apache.http.impl.conn.Wire);
2766    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2767    method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
2768    method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
2769    method @Deprecated public int read() throws java.io.IOException;
2770    method @Deprecated public int read(byte[]) throws java.io.IOException;
2771    method @Deprecated public String readLine() throws java.io.IOException;
2772    method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
2773  }
2774
2775  @Deprecated public class LoggingSessionOutputBuffer implements org.apache.http.io.SessionOutputBuffer {
2776    ctor @Deprecated public LoggingSessionOutputBuffer(org.apache.http.io.SessionOutputBuffer, org.apache.http.impl.conn.Wire);
2777    method @Deprecated public void flush() throws java.io.IOException;
2778    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2779    method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
2780    method @Deprecated public void write(int) throws java.io.IOException;
2781    method @Deprecated public void write(byte[]) throws java.io.IOException;
2782    method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
2783    method @Deprecated public void writeLine(String) throws java.io.IOException;
2784  }
2785
2786  @Deprecated public class ProxySelectorRoutePlanner implements org.apache.http.conn.routing.HttpRoutePlanner {
2787    ctor @Deprecated public ProxySelectorRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry, java.net.ProxySelector);
2788    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);
2789    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;
2790    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;
2791    method @Deprecated protected String getHost(java.net.InetSocketAddress);
2792    method @Deprecated public java.net.ProxySelector getProxySelector();
2793    method @Deprecated public void setProxySelector(java.net.ProxySelector);
2794    field @Deprecated protected java.net.ProxySelector proxySelector;
2795    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2796  }
2797
2798  @Deprecated public class SingleClientConnManager implements org.apache.http.conn.ClientConnectionManager {
2799    ctor @Deprecated public SingleClientConnManager(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
2800    method @Deprecated protected final void assertStillUp() throws java.lang.IllegalStateException;
2801    method @Deprecated public void closeExpiredConnections();
2802    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2803    method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
2804    method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(org.apache.http.conn.routing.HttpRoute, Object);
2805    method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2806    method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
2807    method @Deprecated public final org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
2808    method @Deprecated protected void revokeConnection();
2809    method @Deprecated public void shutdown();
2810    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.";
2811    field @Deprecated protected boolean alwaysShutDown;
2812    field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2813    field @Deprecated protected long connectionExpiresTime;
2814    field @Deprecated protected volatile boolean isShutDown;
2815    field @Deprecated protected long lastReleaseTime;
2816    field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.ConnAdapter managedConn;
2817    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2818    field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.PoolEntry uniquePoolEntry;
2819  }
2820
2821  @Deprecated protected class SingleClientConnManager.ConnAdapter extends org.apache.http.impl.conn.AbstractPooledConnAdapter {
2822    ctor @Deprecated protected SingleClientConnManager.ConnAdapter(org.apache.http.impl.conn.SingleClientConnManager.PoolEntry, org.apache.http.conn.routing.HttpRoute);
2823  }
2824
2825  @Deprecated protected class SingleClientConnManager.PoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
2826    ctor @Deprecated protected SingleClientConnManager.PoolEntry();
2827    method @Deprecated protected void close() throws java.io.IOException;
2828    method @Deprecated protected void shutdown() throws java.io.IOException;
2829  }
2830
2831  @Deprecated public class Wire {
2832    ctor @Deprecated public Wire(org.apache.commons.logging.Log);
2833    method @Deprecated public boolean enabled();
2834    method @Deprecated public void input(java.io.InputStream) throws java.io.IOException;
2835    method @Deprecated public void input(byte[], int, int) throws java.io.IOException;
2836    method @Deprecated public void input(byte[]) throws java.io.IOException;
2837    method @Deprecated public void input(int) throws java.io.IOException;
2838    method @Deprecated public void input(String) throws java.io.IOException;
2839    method @Deprecated public void output(java.io.InputStream) throws java.io.IOException;
2840    method @Deprecated public void output(byte[], int, int) throws java.io.IOException;
2841    method @Deprecated public void output(byte[]) throws java.io.IOException;
2842    method @Deprecated public void output(int) throws java.io.IOException;
2843    method @Deprecated public void output(String) throws java.io.IOException;
2844  }
2845
2846}
2847
2848package org.apache.http.impl.conn.tsccm {
2849
2850  @Deprecated public abstract class AbstractConnPool implements org.apache.http.impl.conn.tsccm.RefQueueHandler {
2851    ctor @Deprecated protected AbstractConnPool();
2852    method @Deprecated protected void closeConnection(org.apache.http.conn.OperatedClientConnection);
2853    method @Deprecated public void closeExpiredConnections();
2854    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2855    method @Deprecated public abstract void deleteClosedConnections();
2856    method @Deprecated public void enableConnectionGC() throws java.lang.IllegalStateException;
2857    method @Deprecated public abstract void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, long, java.util.concurrent.TimeUnit);
2858    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;
2859    method @Deprecated protected abstract void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2860    method @Deprecated public void handleReference(java.lang.ref.Reference);
2861    method @Deprecated public abstract org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.apache.http.conn.routing.HttpRoute, Object);
2862    method @Deprecated public void shutdown();
2863    field @Deprecated protected org.apache.http.impl.conn.IdleConnectionHandler idleConnHandler;
2864    field @Deprecated protected volatile boolean isShutDown;
2865    field @Deprecated protected java.util.Set<org.apache.http.impl.conn.tsccm.BasicPoolEntryRef> issuedConnections;
2866    field @Deprecated protected int numConnections;
2867    field @Deprecated protected final java.util.concurrent.locks.Lock poolLock;
2868    field @Deprecated protected java.lang.ref.ReferenceQueue<java.lang.Object> refQueue;
2869  }
2870
2871  @Deprecated public class BasicPoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
2872    ctor @Deprecated public BasicPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.http.conn.routing.HttpRoute, java.lang.ref.ReferenceQueue<java.lang.Object>);
2873    method @Deprecated protected final org.apache.http.conn.OperatedClientConnection getConnection();
2874    method @Deprecated protected final org.apache.http.conn.routing.HttpRoute getPlannedRoute();
2875    method @Deprecated protected final org.apache.http.impl.conn.tsccm.BasicPoolEntryRef getWeakRef();
2876  }
2877
2878  @Deprecated public class BasicPoolEntryRef extends java.lang.ref.WeakReference<org.apache.http.impl.conn.tsccm.BasicPoolEntry> {
2879    ctor @Deprecated public BasicPoolEntryRef(org.apache.http.impl.conn.tsccm.BasicPoolEntry, java.lang.ref.ReferenceQueue<java.lang.Object>);
2880    method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2881  }
2882
2883  @Deprecated public class BasicPooledConnAdapter extends org.apache.http.impl.conn.AbstractPooledConnAdapter {
2884    ctor @Deprecated protected BasicPooledConnAdapter(org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager, org.apache.http.impl.conn.AbstractPoolEntry);
2885    method @Deprecated protected org.apache.http.impl.conn.AbstractPoolEntry getPoolEntry();
2886  }
2887
2888  @Deprecated public class ConnPoolByRoute extends org.apache.http.impl.conn.tsccm.AbstractConnPool {
2889    ctor @Deprecated public ConnPoolByRoute(org.apache.http.conn.ClientConnectionOperator, org.apache.http.params.HttpParams);
2890    method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry createEntry(org.apache.http.impl.conn.tsccm.RouteSpecificPool, org.apache.http.conn.ClientConnectionOperator);
2891    method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> createFreeConnQueue();
2892    method @Deprecated protected java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.impl.conn.tsccm.RouteSpecificPool> createRouteToPoolMap();
2893    method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> createWaitingThreadQueue();
2894    method @Deprecated public void deleteClosedConnections();
2895    method @Deprecated protected void deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2896    method @Deprecated protected void deleteLeastUsedEntry();
2897    method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, long, java.util.concurrent.TimeUnit);
2898    method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2899    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;
2900    method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getFreeEntry(org.apache.http.impl.conn.tsccm.RouteSpecificPool, Object);
2901    method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool getRoutePool(org.apache.http.conn.routing.HttpRoute, boolean);
2902    method @Deprecated protected void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2903    method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool newRouteSpecificPool(org.apache.http.conn.routing.HttpRoute);
2904    method @Deprecated protected org.apache.http.impl.conn.tsccm.WaitingThread newWaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.conn.tsccm.RouteSpecificPool);
2905    method @Deprecated protected void notifyWaitingThread(org.apache.http.impl.conn.tsccm.RouteSpecificPool);
2906    method @Deprecated public org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.apache.http.conn.routing.HttpRoute, Object);
2907    field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeConnections;
2908    field @Deprecated protected final int maxTotalConnections;
2909    field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator operator;
2910    field @Deprecated protected final java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.impl.conn.tsccm.RouteSpecificPool> routeToPool;
2911    field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waitingThreads;
2912  }
2913
2914  @Deprecated public interface PoolEntryRequest {
2915    method @Deprecated public void abortRequest();
2916    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;
2917  }
2918
2919  @Deprecated public interface RefQueueHandler {
2920    method @Deprecated public void handleReference(java.lang.ref.Reference<?>);
2921  }
2922
2923  @Deprecated public class RefQueueWorker implements java.lang.Runnable {
2924    ctor @Deprecated public RefQueueWorker(java.lang.ref.ReferenceQueue<?>, org.apache.http.impl.conn.tsccm.RefQueueHandler);
2925    method @Deprecated public void run();
2926    method @Deprecated public void shutdown();
2927    field @Deprecated protected final org.apache.http.impl.conn.tsccm.RefQueueHandler refHandler;
2928    field @Deprecated protected final java.lang.ref.ReferenceQueue<?> refQueue;
2929    field @Deprecated protected volatile Thread workerThread;
2930  }
2931
2932  @Deprecated public class RouteSpecificPool {
2933    ctor @Deprecated public RouteSpecificPool(org.apache.http.conn.routing.HttpRoute, int);
2934    method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry allocEntry(Object);
2935    method @Deprecated public void createdEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2936    method @Deprecated public boolean deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2937    method @Deprecated public void dropEntry();
2938    method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2939    method @Deprecated public int getCapacity();
2940    method @Deprecated public final int getEntryCount();
2941    method @Deprecated public final int getMaxEntries();
2942    method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2943    method @Deprecated public boolean hasThread();
2944    method @Deprecated public boolean isUnused();
2945    method @Deprecated public org.apache.http.impl.conn.tsccm.WaitingThread nextThread();
2946    method @Deprecated public void queueThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2947    method @Deprecated public void removeThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2948    field @Deprecated protected final java.util.LinkedList<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeEntries;
2949    field @Deprecated protected final int maxEntries;
2950    field @Deprecated protected int numEntries;
2951    field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2952    field @Deprecated protected final java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waitingThreads;
2953  }
2954
2955  @Deprecated public class ThreadSafeClientConnManager implements org.apache.http.conn.ClientConnectionManager {
2956    ctor @Deprecated public ThreadSafeClientConnManager(org.apache.http.params.HttpParams, org.apache.http.conn.scheme.SchemeRegistry);
2957    method @Deprecated public void closeExpiredConnections();
2958    method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2959    method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry);
2960    method @Deprecated protected org.apache.http.impl.conn.tsccm.AbstractConnPool createConnectionPool(org.apache.http.params.HttpParams);
2961    method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2962    method @Deprecated public int getConnectionsInPool();
2963    method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2964    method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, long, java.util.concurrent.TimeUnit);
2965    method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apache.http.conn.routing.HttpRoute, Object);
2966    method @Deprecated public void shutdown();
2967    field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2968    field @Deprecated protected final org.apache.http.impl.conn.tsccm.AbstractConnPool connectionPool;
2969    field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2970  }
2971
2972  @Deprecated public class WaitingThread {
2973    ctor @Deprecated public WaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.conn.tsccm.RouteSpecificPool);
2974    method @Deprecated public boolean await(java.util.Date) throws java.lang.InterruptedException;
2975    method @Deprecated public final java.util.concurrent.locks.Condition getCondition();
2976    method @Deprecated public final org.apache.http.impl.conn.tsccm.RouteSpecificPool getPool();
2977    method @Deprecated public final Thread getThread();
2978    method @Deprecated public void interrupt();
2979    method @Deprecated public void wakeup();
2980  }
2981
2982  @Deprecated public class WaitingThreadAborter {
2983    ctor @Deprecated public WaitingThreadAborter();
2984    method @Deprecated public void abort();
2985    method @Deprecated public void setWaitingThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2986  }
2987
2988}
2989
2990package org.apache.http.impl.cookie {
2991
2992  @Deprecated public abstract class AbstractCookieAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
2993    ctor @Deprecated public AbstractCookieAttributeHandler();
2994    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
2995    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
2996  }
2997
2998  @Deprecated public abstract class AbstractCookieSpec implements org.apache.http.cookie.CookieSpec {
2999    ctor @Deprecated public AbstractCookieSpec();
3000    method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler findAttribHandler(String);
3001    method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler getAttribHandler(String);
3002    method @Deprecated protected java.util.Collection<org.apache.http.cookie.CookieAttributeHandler> getAttribHandlers();
3003    method @Deprecated public void registerAttribHandler(String, org.apache.http.cookie.CookieAttributeHandler);
3004  }
3005
3006  @Deprecated public class BasicClientCookie implements org.apache.http.cookie.ClientCookie java.lang.Cloneable org.apache.http.cookie.SetCookie {
3007    ctor @Deprecated public BasicClientCookie(String, String);
3008    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3009    method @Deprecated public boolean containsAttribute(String);
3010    method @Deprecated public String getAttribute(String);
3011    method @Deprecated public String getComment();
3012    method @Deprecated public String getCommentURL();
3013    method @Deprecated public String getDomain();
3014    method @Deprecated public java.util.Date getExpiryDate();
3015    method @Deprecated public String getName();
3016    method @Deprecated public String getPath();
3017    method @Deprecated public int[] getPorts();
3018    method @Deprecated public String getValue();
3019    method @Deprecated public int getVersion();
3020    method @Deprecated public boolean isExpired(java.util.Date);
3021    method @Deprecated public boolean isPersistent();
3022    method @Deprecated public boolean isSecure();
3023    method @Deprecated public void setAttribute(String, String);
3024    method @Deprecated public void setComment(String);
3025    method @Deprecated public void setDomain(String);
3026    method @Deprecated public void setExpiryDate(java.util.Date);
3027    method @Deprecated public void setPath(String);
3028    method @Deprecated public void setSecure(boolean);
3029    method @Deprecated public void setValue(String);
3030    method @Deprecated public void setVersion(int);
3031  }
3032
3033  @Deprecated public class BasicClientCookie2 extends org.apache.http.impl.cookie.BasicClientCookie implements org.apache.http.cookie.SetCookie2 {
3034    ctor @Deprecated public BasicClientCookie2(String, String);
3035    method @Deprecated public void setCommentURL(String);
3036    method @Deprecated public void setDiscard(boolean);
3037    method @Deprecated public void setPorts(int[]);
3038  }
3039
3040  @Deprecated public class BasicCommentHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3041    ctor @Deprecated public BasicCommentHandler();
3042    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3043  }
3044
3045  @Deprecated public class BasicDomainHandler implements org.apache.http.cookie.CookieAttributeHandler {
3046    ctor @Deprecated public BasicDomainHandler();
3047    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3048    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3049    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3050  }
3051
3052  @Deprecated public class BasicExpiresHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3053    ctor @Deprecated public BasicExpiresHandler(String[]);
3054    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3055  }
3056
3057  @Deprecated public class BasicMaxAgeHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3058    ctor @Deprecated public BasicMaxAgeHandler();
3059    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3060  }
3061
3062  @Deprecated public class BasicPathHandler implements org.apache.http.cookie.CookieAttributeHandler {
3063    ctor @Deprecated public BasicPathHandler();
3064    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3065    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3066    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3067  }
3068
3069  @Deprecated public class BasicSecureHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3070    ctor @Deprecated public BasicSecureHandler();
3071    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3072  }
3073
3074  @Deprecated public class BestMatchSpec implements org.apache.http.cookie.CookieSpec {
3075    ctor @Deprecated public BestMatchSpec(String[], boolean);
3076    ctor @Deprecated public BestMatchSpec();
3077    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3078    method @Deprecated public int getVersion();
3079    method @Deprecated public org.apache.http.Header getVersionHeader();
3080    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3081    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;
3082    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3083  }
3084
3085  @Deprecated public class BestMatchSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3086    ctor @Deprecated public BestMatchSpecFactory();
3087    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
3088  }
3089
3090  @Deprecated public class BrowserCompatSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3091    ctor @Deprecated public BrowserCompatSpec(String[]);
3092    ctor @Deprecated public BrowserCompatSpec();
3093    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3094    method @Deprecated public int getVersion();
3095    method @Deprecated public org.apache.http.Header getVersionHeader();
3096    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;
3097    field @Deprecated protected static final String[] DATE_PATTERNS;
3098  }
3099
3100  @Deprecated public class BrowserCompatSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3101    ctor @Deprecated public BrowserCompatSpecFactory();
3102    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
3103  }
3104
3105  @Deprecated public abstract class CookieSpecBase extends org.apache.http.impl.cookie.AbstractCookieSpec {
3106    ctor @Deprecated public CookieSpecBase();
3107    method @Deprecated protected static String getDefaultDomain(org.apache.http.cookie.CookieOrigin);
3108    method @Deprecated protected static String getDefaultPath(org.apache.http.cookie.CookieOrigin);
3109    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3110    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;
3111    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3112  }
3113
3114  @Deprecated public class DateParseException extends java.lang.Exception {
3115    ctor @Deprecated public DateParseException();
3116    ctor @Deprecated public DateParseException(String);
3117  }
3118
3119  @Deprecated public final class DateUtils {
3120    method @Deprecated public static String formatDate(java.util.Date);
3121    method @Deprecated public static String formatDate(java.util.Date, String);
3122    method @Deprecated public static java.util.Date parseDate(String) throws org.apache.http.impl.cookie.DateParseException;
3123    method @Deprecated public static java.util.Date parseDate(String, String[]) throws org.apache.http.impl.cookie.DateParseException;
3124    method @Deprecated public static java.util.Date parseDate(String, String[], java.util.Date) throws org.apache.http.impl.cookie.DateParseException;
3125    field @Deprecated public static final java.util.TimeZone GMT;
3126    field @Deprecated public static final String PATTERN_ASCTIME = "EEE MMM d HH:mm:ss yyyy";
3127    field @Deprecated public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
3128    field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
3129  }
3130
3131  @Deprecated public class NetscapeDomainHandler extends org.apache.http.impl.cookie.BasicDomainHandler {
3132    ctor @Deprecated public NetscapeDomainHandler();
3133  }
3134
3135  @Deprecated public class NetscapeDraftHeaderParser {
3136    ctor @Deprecated public NetscapeDraftHeaderParser();
3137    method @Deprecated public org.apache.http.HeaderElement parseHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3138    field @Deprecated public static final org.apache.http.impl.cookie.NetscapeDraftHeaderParser DEFAULT;
3139  }
3140
3141  @Deprecated public class NetscapeDraftSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3142    ctor @Deprecated public NetscapeDraftSpec(String[]);
3143    ctor @Deprecated public NetscapeDraftSpec();
3144    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3145    method @Deprecated public int getVersion();
3146    method @Deprecated public org.apache.http.Header getVersionHeader();
3147    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;
3148    field @Deprecated protected static final String EXPIRES_PATTERN = "EEE, dd-MMM-yyyy HH:mm:ss z";
3149  }
3150
3151  @Deprecated public class NetscapeDraftSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3152    ctor @Deprecated public NetscapeDraftSpecFactory();
3153    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
3154  }
3155
3156  @Deprecated public class RFC2109DomainHandler implements org.apache.http.cookie.CookieAttributeHandler {
3157    ctor @Deprecated public RFC2109DomainHandler();
3158    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3159    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3160    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3161  }
3162
3163  @Deprecated public class RFC2109Spec extends org.apache.http.impl.cookie.CookieSpecBase {
3164    ctor @Deprecated public RFC2109Spec(String[], boolean);
3165    ctor @Deprecated public RFC2109Spec();
3166    method @Deprecated protected void formatCookieAsVer(org.apache.http.util.CharArrayBuffer, org.apache.http.cookie.Cookie, int);
3167    method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.apache.http.cookie.Cookie>);
3168    method @Deprecated protected void formatParamAsVer(org.apache.http.util.CharArrayBuffer, String, String, int);
3169    method @Deprecated public int getVersion();
3170    method @Deprecated public org.apache.http.Header getVersionHeader();
3171    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;
3172  }
3173
3174  @Deprecated public class RFC2109SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3175    ctor @Deprecated public RFC2109SpecFactory();
3176    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
3177  }
3178
3179  @Deprecated public class RFC2109VersionHandler extends org.apache.http.impl.cookie.AbstractCookieAttributeHandler {
3180    ctor @Deprecated public RFC2109VersionHandler();
3181    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3182  }
3183
3184  @Deprecated public class RFC2965CommentUrlAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3185    ctor @Deprecated public RFC2965CommentUrlAttributeHandler();
3186    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3187    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3188    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3189  }
3190
3191  @Deprecated public class RFC2965DiscardAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3192    ctor @Deprecated public RFC2965DiscardAttributeHandler();
3193    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3194    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3195    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3196  }
3197
3198  @Deprecated public class RFC2965DomainAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3199    ctor @Deprecated public RFC2965DomainAttributeHandler();
3200    method @Deprecated public boolean domainMatch(String, String);
3201    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3202    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3203    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3204  }
3205
3206  @Deprecated public class RFC2965PortAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3207    ctor @Deprecated public RFC2965PortAttributeHandler();
3208    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3209    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3210    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3211  }
3212
3213  @Deprecated public class RFC2965Spec extends org.apache.http.impl.cookie.RFC2109Spec {
3214    ctor @Deprecated public RFC2965Spec();
3215    ctor @Deprecated public RFC2965Spec(String[], boolean);
3216  }
3217
3218  @Deprecated public class RFC2965SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3219    ctor @Deprecated public RFC2965SpecFactory();
3220    method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.HttpParams);
3221  }
3222
3223  @Deprecated public class RFC2965VersionAttributeHandler implements org.apache.http.cookie.CookieAttributeHandler {
3224    ctor @Deprecated public RFC2965VersionAttributeHandler();
3225    method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin);
3226    method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.http.cookie.MalformedCookieException;
3227    method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.CookieOrigin) throws org.apache.http.cookie.MalformedCookieException;
3228  }
3229
3230}
3231
3232package org.apache.http.impl.entity {
3233
3234  @Deprecated public class EntityDeserializer {
3235    ctor @Deprecated public EntityDeserializer(org.apache.http.entity.ContentLengthStrategy);
3236    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;
3237    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;
3238  }
3239
3240  @Deprecated public class EntitySerializer {
3241    ctor @Deprecated public EntitySerializer(org.apache.http.entity.ContentLengthStrategy);
3242    method @Deprecated protected java.io.OutputStream doSerialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
3243    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;
3244  }
3245
3246  @Deprecated public class LaxContentLengthStrategy implements org.apache.http.entity.ContentLengthStrategy {
3247    ctor @Deprecated public LaxContentLengthStrategy();
3248    method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
3249  }
3250
3251  @Deprecated public class StrictContentLengthStrategy implements org.apache.http.entity.ContentLengthStrategy {
3252    ctor @Deprecated public StrictContentLengthStrategy();
3253    method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http.HttpException;
3254  }
3255
3256}
3257
3258package org.apache.http.impl.io {
3259
3260  @Deprecated public abstract class AbstractMessageParser implements org.apache.http.io.HttpMessageParser {
3261    ctor @Deprecated public AbstractMessageParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.params.HttpParams);
3262    method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException, java.io.IOException;
3263    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;
3264    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;
3265    field @Deprecated protected final org.apache.http.message.LineParser lineParser;
3266  }
3267
3268  @Deprecated public abstract class AbstractMessageWriter implements org.apache.http.io.HttpMessageWriter {
3269    ctor @Deprecated public AbstractMessageWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
3270    method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
3271    method @Deprecated protected abstract void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
3272    field @Deprecated protected final org.apache.http.util.CharArrayBuffer lineBuf;
3273    field @Deprecated protected final org.apache.http.message.LineFormatter lineFormatter;
3274    field @Deprecated protected final org.apache.http.io.SessionOutputBuffer sessionBuffer;
3275  }
3276
3277  @Deprecated public abstract class AbstractSessionInputBuffer implements org.apache.http.io.SessionInputBuffer {
3278    ctor @Deprecated public AbstractSessionInputBuffer();
3279    method @Deprecated protected int fillBuffer() throws java.io.IOException;
3280    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3281    method @Deprecated protected boolean hasBufferedData();
3282    method @Deprecated protected void init(java.io.InputStream, int, org.apache.http.params.HttpParams);
3283    method @Deprecated public int read() throws java.io.IOException;
3284    method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3285    method @Deprecated public int read(byte[]) throws java.io.IOException;
3286    method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
3287    method @Deprecated public String readLine() throws java.io.IOException;
3288  }
3289
3290  @Deprecated public abstract class AbstractSessionOutputBuffer implements org.apache.http.io.SessionOutputBuffer {
3291    ctor @Deprecated public AbstractSessionOutputBuffer();
3292    method @Deprecated public void flush() throws java.io.IOException;
3293    method @Deprecated protected void flushBuffer() throws java.io.IOException;
3294    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3295    method @Deprecated protected void init(java.io.OutputStream, int, org.apache.http.params.HttpParams);
3296    method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3297    method @Deprecated public void write(byte[]) throws java.io.IOException;
3298    method @Deprecated public void write(int) throws java.io.IOException;
3299    method @Deprecated public void writeLine(String) throws java.io.IOException;
3300    method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
3301  }
3302
3303  @Deprecated public class ChunkedInputStream extends java.io.InputStream {
3304    ctor @Deprecated public ChunkedInputStream(org.apache.http.io.SessionInputBuffer);
3305    method @Deprecated public org.apache.http.Header[] getFooters();
3306    method @Deprecated public int read() throws java.io.IOException;
3307  }
3308
3309  @Deprecated public class ChunkedOutputStream extends java.io.OutputStream {
3310    ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer, int) throws java.io.IOException;
3311    ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer) throws java.io.IOException;
3312    method @Deprecated public void finish() throws java.io.IOException;
3313    method @Deprecated protected void flushCache() throws java.io.IOException;
3314    method @Deprecated protected void flushCacheWithAppend(byte[], int, int) throws java.io.IOException;
3315    method @Deprecated public void write(int) throws java.io.IOException;
3316    method @Deprecated protected void writeClosingChunk() throws java.io.IOException;
3317  }
3318
3319  @Deprecated public class ContentLengthInputStream extends java.io.InputStream {
3320    ctor @Deprecated public ContentLengthInputStream(org.apache.http.io.SessionInputBuffer, long);
3321    method @Deprecated public int read() throws java.io.IOException;
3322  }
3323
3324  @Deprecated public class ContentLengthOutputStream extends java.io.OutputStream {
3325    ctor @Deprecated public ContentLengthOutputStream(org.apache.http.io.SessionOutputBuffer, long);
3326    method @Deprecated public void write(int) throws java.io.IOException;
3327  }
3328
3329  @Deprecated public class HttpRequestParser extends org.apache.http.impl.io.AbstractMessageParser {
3330    ctor @Deprecated public HttpRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpRequestFactory, org.apache.http.params.HttpParams);
3331    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;
3332  }
3333
3334  @Deprecated public class HttpRequestWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3335    ctor @Deprecated public HttpRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
3336    method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
3337  }
3338
3339  @Deprecated public class HttpResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
3340    ctor @Deprecated public HttpResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.message.LineParser, org.apache.http.HttpResponseFactory, org.apache.http.params.HttpParams);
3341    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;
3342  }
3343
3344  @Deprecated public class HttpResponseWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3345    ctor @Deprecated public HttpResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.message.LineFormatter, org.apache.http.params.HttpParams);
3346    method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOException;
3347  }
3348
3349  @Deprecated public class HttpTransportMetricsImpl implements org.apache.http.io.HttpTransportMetrics {
3350    ctor @Deprecated public HttpTransportMetricsImpl();
3351    method @Deprecated public long getBytesTransferred();
3352    method @Deprecated public void incrementBytesTransferred(long);
3353    method @Deprecated public void reset();
3354    method @Deprecated public void setBytesTransferred(long);
3355  }
3356
3357  @Deprecated public class IdentityInputStream extends java.io.InputStream {
3358    ctor @Deprecated public IdentityInputStream(org.apache.http.io.SessionInputBuffer);
3359    method @Deprecated public int read() throws java.io.IOException;
3360  }
3361
3362  @Deprecated public class IdentityOutputStream extends java.io.OutputStream {
3363    ctor @Deprecated public IdentityOutputStream(org.apache.http.io.SessionOutputBuffer);
3364    method @Deprecated public void write(int) throws java.io.IOException;
3365  }
3366
3367  @Deprecated public class SocketInputBuffer extends org.apache.http.impl.io.AbstractSessionInputBuffer {
3368    ctor @Deprecated public SocketInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
3369    method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3370    method @Deprecated public boolean isStale() throws java.io.IOException;
3371  }
3372
3373  @Deprecated public class SocketOutputBuffer extends org.apache.http.impl.io.AbstractSessionOutputBuffer {
3374    ctor @Deprecated public SocketOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
3375  }
3376
3377}
3378
3379package org.apache.http.io {
3380
3381  @Deprecated public interface HttpMessageParser {
3382    method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException, java.io.IOException;
3383  }
3384
3385  @Deprecated public interface HttpMessageWriter {
3386    method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpException, java.io.IOException;
3387  }
3388
3389  @Deprecated public interface HttpTransportMetrics {
3390    method @Deprecated public long getBytesTransferred();
3391    method @Deprecated public void reset();
3392  }
3393
3394  @Deprecated public interface SessionInputBuffer {
3395    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3396    method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3397    method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3398    method @Deprecated public int read(byte[]) throws java.io.IOException;
3399    method @Deprecated public int read() throws java.io.IOException;
3400    method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
3401    method @Deprecated public String readLine() throws java.io.IOException;
3402  }
3403
3404  @Deprecated public interface SessionOutputBuffer {
3405    method @Deprecated public void flush() throws java.io.IOException;
3406    method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3407    method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3408    method @Deprecated public void write(byte[]) throws java.io.IOException;
3409    method @Deprecated public void write(int) throws java.io.IOException;
3410    method @Deprecated public void writeLine(String) throws java.io.IOException;
3411    method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOException;
3412  }
3413
3414}
3415
3416package org.apache.http.message {
3417
3418  @Deprecated public abstract class AbstractHttpMessage implements org.apache.http.HttpMessage {
3419    ctor @Deprecated protected AbstractHttpMessage(org.apache.http.params.HttpParams);
3420    ctor @Deprecated protected AbstractHttpMessage();
3421    method @Deprecated public void addHeader(org.apache.http.Header);
3422    method @Deprecated public void addHeader(String, String);
3423    method @Deprecated public boolean containsHeader(String);
3424    method @Deprecated public org.apache.http.Header[] getAllHeaders();
3425    method @Deprecated public org.apache.http.Header getFirstHeader(String);
3426    method @Deprecated public org.apache.http.Header[] getHeaders(String);
3427    method @Deprecated public org.apache.http.Header getLastHeader(String);
3428    method @Deprecated public org.apache.http.params.HttpParams getParams();
3429    method @Deprecated public org.apache.http.HeaderIterator headerIterator();
3430    method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
3431    method @Deprecated public void removeHeader(org.apache.http.Header);
3432    method @Deprecated public void removeHeaders(String);
3433    method @Deprecated public void setHeader(org.apache.http.Header);
3434    method @Deprecated public void setHeader(String, String);
3435    method @Deprecated public void setHeaders(org.apache.http.Header[]);
3436    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3437    field @Deprecated protected org.apache.http.message.HeaderGroup headergroup;
3438    field @Deprecated protected org.apache.http.params.HttpParams params;
3439  }
3440
3441  @Deprecated public class BasicHeader implements java.lang.Cloneable org.apache.http.Header {
3442    ctor @Deprecated public BasicHeader(String, String);
3443    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3444    method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
3445    method @Deprecated public String getName();
3446    method @Deprecated public String getValue();
3447  }
3448
3449  @Deprecated public class BasicHeaderElement implements java.lang.Cloneable org.apache.http.HeaderElement {
3450    ctor @Deprecated public BasicHeaderElement(String, String, org.apache.http.NameValuePair[]);
3451    ctor @Deprecated public BasicHeaderElement(String, String);
3452    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3453    method @Deprecated public String getName();
3454    method @Deprecated public org.apache.http.NameValuePair getParameter(int);
3455    method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
3456    method @Deprecated public int getParameterCount();
3457    method @Deprecated public org.apache.http.NameValuePair[] getParameters();
3458    method @Deprecated public String getValue();
3459  }
3460
3461  @Deprecated public class BasicHeaderElementIterator implements org.apache.http.HeaderElementIterator {
3462    ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator, org.apache.http.message.HeaderValueParser);
3463    ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator);
3464    method @Deprecated public boolean hasNext();
3465    method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3466    method @Deprecated public org.apache.http.HeaderElement nextElement() throws java.util.NoSuchElementException;
3467    method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3468  }
3469
3470  @Deprecated public class BasicHeaderIterator implements org.apache.http.HeaderIterator {
3471    ctor @Deprecated public BasicHeaderIterator(org.apache.http.Header[], String);
3472    method @Deprecated protected boolean filterHeader(int);
3473    method @Deprecated protected int findNext(int);
3474    method @Deprecated public boolean hasNext();
3475    method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3476    method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementException;
3477    method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3478    field @Deprecated protected final org.apache.http.Header[] allHeaders;
3479    field @Deprecated protected int currentIndex;
3480    field @Deprecated protected String headerName;
3481  }
3482
3483  @Deprecated public class BasicHeaderValueFormatter implements org.apache.http.message.HeaderValueFormatter {
3484    ctor @Deprecated public BasicHeaderValueFormatter();
3485    method @Deprecated protected void doFormatValue(org.apache.http.util.CharArrayBuffer, String, boolean);
3486    method @Deprecated protected int estimateElementsLen(org.apache.http.HeaderElement[]);
3487    method @Deprecated protected int estimateHeaderElementLen(org.apache.http.HeaderElement);
3488    method @Deprecated protected int estimateNameValuePairLen(org.apache.http.NameValuePair);
3489    method @Deprecated protected int estimateParametersLen(org.apache.http.NameValuePair[]);
3490    method @Deprecated public static final String formatElements(org.apache.http.HeaderElement[], boolean, org.apache.http.message.HeaderValueFormatter);
3491    method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement[], boolean);
3492    method @Deprecated public static final String formatHeaderElement(org.apache.http.HeaderElement, boolean, org.apache.http.message.HeaderValueFormatter);
3493    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement, boolean);
3494    method @Deprecated public static final String formatNameValuePair(org.apache.http.NameValuePair, boolean, org.apache.http.message.HeaderValueFormatter);
3495    method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair, boolean);
3496    method @Deprecated public static final String formatParameters(org.apache.http.NameValuePair[], boolean, org.apache.http.message.HeaderValueFormatter);
3497    method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair[], boolean);
3498    method @Deprecated protected boolean isSeparator(char);
3499    method @Deprecated protected boolean isUnsafe(char);
3500    field @Deprecated public static final org.apache.http.message.BasicHeaderValueFormatter DEFAULT;
3501    field @Deprecated public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
3502    field @Deprecated public static final String UNSAFE_CHARS = "\"\\";
3503  }
3504
3505  @Deprecated public class BasicHeaderValueParser implements org.apache.http.message.HeaderValueParser {
3506    ctor @Deprecated public BasicHeaderValueParser();
3507    method @Deprecated protected org.apache.http.HeaderElement createHeaderElement(String, String, org.apache.http.NameValuePair[]);
3508    method @Deprecated protected org.apache.http.NameValuePair createNameValuePair(String, String);
3509    method @Deprecated public static final org.apache.http.HeaderElement[] parseElements(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3510    method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3511    method @Deprecated public static final org.apache.http.HeaderElement parseHeaderElement(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3512    method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3513    method @Deprecated public static final org.apache.http.NameValuePair parseNameValuePair(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3514    method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3515    method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor, char[]);
3516    method @Deprecated public static final org.apache.http.NameValuePair[] parseParameters(String, org.apache.http.message.HeaderValueParser) throws org.apache.http.ParseException;
3517    method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3518    field @Deprecated public static final org.apache.http.message.BasicHeaderValueParser DEFAULT;
3519  }
3520
3521  @Deprecated public class BasicHttpEntityEnclosingRequest extends org.apache.http.message.BasicHttpRequest implements org.apache.http.HttpEntityEnclosingRequest {
3522    ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String);
3523    ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String, org.apache.http.ProtocolVersion);
3524    ctor @Deprecated public BasicHttpEntityEnclosingRequest(org.apache.http.RequestLine);
3525    method @Deprecated public boolean expectContinue();
3526    method @Deprecated public org.apache.http.HttpEntity getEntity();
3527    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3528  }
3529
3530  @Deprecated public class BasicHttpRequest extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.HttpRequest {
3531    ctor @Deprecated public BasicHttpRequest(String, String);
3532    ctor @Deprecated public BasicHttpRequest(String, String, org.apache.http.ProtocolVersion);
3533    ctor @Deprecated public BasicHttpRequest(org.apache.http.RequestLine);
3534    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3535    method @Deprecated public org.apache.http.RequestLine getRequestLine();
3536  }
3537
3538  @Deprecated public class BasicHttpResponse extends org.apache.http.message.AbstractHttpMessage implements org.apache.http.HttpResponse {
3539    ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine, org.apache.http.ReasonPhraseCatalog, java.util.Locale);
3540    ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine);
3541    ctor @Deprecated public BasicHttpResponse(org.apache.http.ProtocolVersion, int, String);
3542    method @Deprecated public org.apache.http.HttpEntity getEntity();
3543    method @Deprecated public java.util.Locale getLocale();
3544    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3545    method @Deprecated protected String getReason(int);
3546    method @Deprecated public org.apache.http.StatusLine getStatusLine();
3547    method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3548    method @Deprecated public void setLocale(java.util.Locale);
3549    method @Deprecated public void setReasonPhrase(String);
3550    method @Deprecated public void setStatusCode(int);
3551    method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
3552    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
3553    method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
3554  }
3555
3556  @Deprecated public class BasicLineFormatter implements org.apache.http.message.LineFormatter {
3557    ctor @Deprecated public BasicLineFormatter();
3558    method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion);
3559    method @Deprecated protected void doFormatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
3560    method @Deprecated protected void doFormatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
3561    method @Deprecated protected void doFormatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
3562    method @Deprecated protected int estimateProtocolVersionLen(org.apache.http.ProtocolVersion);
3563    method @Deprecated public static final String formatHeader(org.apache.http.Header, org.apache.http.message.LineFormatter);
3564    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
3565    method @Deprecated public static final String formatProtocolVersion(org.apache.http.ProtocolVersion, org.apache.http.message.LineFormatter);
3566    method @Deprecated public static final String formatRequestLine(org.apache.http.RequestLine, org.apache.http.message.LineFormatter);
3567    method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
3568    method @Deprecated public static final String formatStatusLine(org.apache.http.StatusLine, org.apache.http.message.LineFormatter);
3569    method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
3570    method @Deprecated protected org.apache.http.util.CharArrayBuffer initBuffer(org.apache.http.util.CharArrayBuffer);
3571    field @Deprecated public static final org.apache.http.message.BasicLineFormatter DEFAULT;
3572  }
3573
3574  @Deprecated public class BasicLineParser implements org.apache.http.message.LineParser {
3575    ctor @Deprecated public BasicLineParser(org.apache.http.ProtocolVersion);
3576    ctor @Deprecated public BasicLineParser();
3577    method @Deprecated protected org.apache.http.ProtocolVersion createProtocolVersion(int, int);
3578    method @Deprecated protected org.apache.http.RequestLine createRequestLine(String, String, org.apache.http.ProtocolVersion);
3579    method @Deprecated protected org.apache.http.StatusLine createStatusLine(org.apache.http.ProtocolVersion, int, String);
3580    method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3581    method @Deprecated public static final org.apache.http.Header parseHeader(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3582    method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
3583    method @Deprecated public static final org.apache.http.ProtocolVersion parseProtocolVersion(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3584    method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3585    method @Deprecated public static final org.apache.http.RequestLine parseRequestLine(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3586    method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3587    method @Deprecated public static final org.apache.http.StatusLine parseStatusLine(String, org.apache.http.message.LineParser) throws org.apache.http.ParseException;
3588    method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3589    method @Deprecated protected void skipWhitespace(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3590    field @Deprecated public static final org.apache.http.message.BasicLineParser DEFAULT;
3591    field @Deprecated protected final org.apache.http.ProtocolVersion protocol;
3592  }
3593
3594  @Deprecated public class BasicListHeaderIterator implements org.apache.http.HeaderIterator {
3595    ctor @Deprecated public BasicListHeaderIterator(java.util.List, String);
3596    method @Deprecated protected boolean filterHeader(int);
3597    method @Deprecated protected int findNext(int);
3598    method @Deprecated public boolean hasNext();
3599    method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3600    method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementException;
3601    method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3602    field @Deprecated protected final java.util.List allHeaders;
3603    field @Deprecated protected int currentIndex;
3604    field @Deprecated protected String headerName;
3605    field @Deprecated protected int lastIndex;
3606  }
3607
3608  @Deprecated public class BasicNameValuePair implements java.lang.Cloneable org.apache.http.NameValuePair {
3609    ctor @Deprecated public BasicNameValuePair(String, String);
3610    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3611    method @Deprecated public String getName();
3612    method @Deprecated public String getValue();
3613  }
3614
3615  @Deprecated public class BasicRequestLine implements java.lang.Cloneable org.apache.http.RequestLine {
3616    ctor @Deprecated public BasicRequestLine(String, String, org.apache.http.ProtocolVersion);
3617    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3618    method @Deprecated public String getMethod();
3619    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3620    method @Deprecated public String getUri();
3621  }
3622
3623  @Deprecated public class BasicStatusLine implements java.lang.Cloneable org.apache.http.StatusLine {
3624    ctor @Deprecated public BasicStatusLine(org.apache.http.ProtocolVersion, int, String);
3625    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3626    method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3627    method @Deprecated public String getReasonPhrase();
3628    method @Deprecated public int getStatusCode();
3629  }
3630
3631  @Deprecated public class BasicTokenIterator implements org.apache.http.TokenIterator {
3632    ctor @Deprecated public BasicTokenIterator(org.apache.http.HeaderIterator);
3633    method @Deprecated protected String createToken(String, int, int);
3634    method @Deprecated protected int findNext(int) throws org.apache.http.ParseException;
3635    method @Deprecated protected int findTokenEnd(int);
3636    method @Deprecated protected int findTokenSeparator(int);
3637    method @Deprecated protected int findTokenStart(int);
3638    method @Deprecated public boolean hasNext();
3639    method @Deprecated protected boolean isHttpSeparator(char);
3640    method @Deprecated protected boolean isTokenChar(char);
3641    method @Deprecated protected boolean isTokenSeparator(char);
3642    method @Deprecated protected boolean isWhitespace(char);
3643    method @Deprecated public final Object next() throws java.util.NoSuchElementException, org.apache.http.ParseException;
3644    method @Deprecated public String nextToken() throws java.util.NoSuchElementException, org.apache.http.ParseException;
3645    method @Deprecated public final void remove() throws java.lang.UnsupportedOperationException;
3646    field @Deprecated public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
3647    field @Deprecated protected String currentHeader;
3648    field @Deprecated protected String currentToken;
3649    field @Deprecated protected final org.apache.http.HeaderIterator headerIt;
3650    field @Deprecated protected int searchPos;
3651  }
3652
3653  @Deprecated public class BufferedHeader implements java.lang.Cloneable org.apache.http.FormattedHeader {
3654    ctor @Deprecated public BufferedHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
3655    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3656    method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
3657    method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.ParseException;
3658    method @Deprecated public String getName();
3659    method @Deprecated public String getValue();
3660    method @Deprecated public int getValuePos();
3661  }
3662
3663  @Deprecated public class HeaderGroup implements java.lang.Cloneable {
3664    ctor @Deprecated public HeaderGroup();
3665    method @Deprecated public void addHeader(org.apache.http.Header);
3666    method @Deprecated public void clear();
3667    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3668    method @Deprecated public boolean containsHeader(String);
3669    method @Deprecated public org.apache.http.message.HeaderGroup copy();
3670    method @Deprecated public org.apache.http.Header[] getAllHeaders();
3671    method @Deprecated public org.apache.http.Header getCondensedHeader(String);
3672    method @Deprecated public org.apache.http.Header getFirstHeader(String);
3673    method @Deprecated public org.apache.http.Header[] getHeaders(String);
3674    method @Deprecated public org.apache.http.Header getLastHeader(String);
3675    method @Deprecated public org.apache.http.HeaderIterator iterator();
3676    method @Deprecated public org.apache.http.HeaderIterator iterator(String);
3677    method @Deprecated public void removeHeader(org.apache.http.Header);
3678    method @Deprecated public void setHeaders(org.apache.http.Header[]);
3679    method @Deprecated public void updateHeader(org.apache.http.Header);
3680  }
3681
3682  @Deprecated public interface HeaderValueFormatter {
3683    method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement[], boolean);
3684    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.HeaderElement, boolean);
3685    method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair, boolean);
3686    method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.NameValuePair[], boolean);
3687  }
3688
3689  @Deprecated public interface HeaderValueParser {
3690    method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3691    method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3692    method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3693    method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3694  }
3695
3696  @Deprecated public interface LineFormatter {
3697    method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion);
3698    method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.CharArrayBuffer, org.apache.http.Header);
3699    method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine);
3700    method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.StatusLine);
3701  }
3702
3703  @Deprecated public interface LineParser {
3704    method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor);
3705    method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.http.ParseException;
3706    method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3707    method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3708    method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor) throws org.apache.http.ParseException;
3709  }
3710
3711  @Deprecated public class ParserCursor {
3712    ctor @Deprecated public ParserCursor(int, int);
3713    method @Deprecated public boolean atEnd();
3714    method @Deprecated public int getLowerBound();
3715    method @Deprecated public int getPos();
3716    method @Deprecated public int getUpperBound();
3717    method @Deprecated public void updatePos(int);
3718  }
3719
3720}
3721
3722package org.apache.http.params {
3723
3724  @Deprecated public abstract class AbstractHttpParams implements org.apache.http.params.HttpParams {
3725    ctor @Deprecated protected AbstractHttpParams();
3726    method @Deprecated public boolean getBooleanParameter(String, boolean);
3727    method @Deprecated public double getDoubleParameter(String, double);
3728    method @Deprecated public int getIntParameter(String, int);
3729    method @Deprecated public long getLongParameter(String, long);
3730    method @Deprecated public boolean isParameterFalse(String);
3731    method @Deprecated public boolean isParameterTrue(String);
3732    method @Deprecated public org.apache.http.params.HttpParams setBooleanParameter(String, boolean);
3733    method @Deprecated public org.apache.http.params.HttpParams setDoubleParameter(String, double);
3734    method @Deprecated public org.apache.http.params.HttpParams setIntParameter(String, int);
3735    method @Deprecated public org.apache.http.params.HttpParams setLongParameter(String, long);
3736  }
3737
3738  @Deprecated public final class BasicHttpParams extends org.apache.http.params.AbstractHttpParams implements java.lang.Cloneable java.io.Serializable {
3739    ctor @Deprecated public BasicHttpParams();
3740    method @Deprecated public void clear();
3741    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3742    method @Deprecated public org.apache.http.params.HttpParams copy();
3743    method @Deprecated protected void copyParams(org.apache.http.params.HttpParams);
3744    method @Deprecated public Object getParameter(String);
3745    method @Deprecated public boolean isParameterSet(String);
3746    method @Deprecated public boolean isParameterSetLocally(String);
3747    method @Deprecated public boolean removeParameter(String);
3748    method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3749    method @Deprecated public void setParameters(String[], Object);
3750  }
3751
3752  @Deprecated public interface CoreProtocolPNames {
3753    field @Deprecated public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset";
3754    field @Deprecated public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset";
3755    field @Deprecated public static final String ORIGIN_SERVER = "http.origin-server";
3756    field @Deprecated public static final String PROTOCOL_VERSION = "http.protocol.version";
3757    field @Deprecated public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-transfer-encoding";
3758    field @Deprecated public static final String USER_AGENT = "http.useragent";
3759    field @Deprecated public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue";
3760    field @Deprecated public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue";
3761  }
3762
3763  @Deprecated public final class DefaultedHttpParams extends org.apache.http.params.AbstractHttpParams {
3764    ctor @Deprecated public DefaultedHttpParams(org.apache.http.params.HttpParams, org.apache.http.params.HttpParams);
3765    method @Deprecated public org.apache.http.params.HttpParams copy();
3766    method @Deprecated public org.apache.http.params.HttpParams getDefaults();
3767    method @Deprecated public Object getParameter(String);
3768    method @Deprecated public boolean removeParameter(String);
3769    method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3770  }
3771
3772  @Deprecated public abstract class HttpAbstractParamBean {
3773    ctor @Deprecated public HttpAbstractParamBean(org.apache.http.params.HttpParams);
3774    field @Deprecated protected final org.apache.http.params.HttpParams params;
3775  }
3776
3777  @Deprecated public class HttpConnectionParamBean extends org.apache.http.params.HttpAbstractParamBean {
3778    ctor @Deprecated public HttpConnectionParamBean(org.apache.http.params.HttpParams);
3779    method @Deprecated public void setConnectionTimeout(int);
3780    method @Deprecated public void setLinger(int);
3781    method @Deprecated public void setSoTimeout(int);
3782    method @Deprecated public void setSocketBufferSize(int);
3783    method @Deprecated public void setStaleCheckingEnabled(boolean);
3784    method @Deprecated public void setTcpNoDelay(boolean);
3785  }
3786
3787  @Deprecated public class HttpProtocolParamBean extends org.apache.http.params.HttpAbstractParamBean {
3788    ctor @Deprecated public HttpProtocolParamBean(org.apache.http.params.HttpParams);
3789    method @Deprecated public void setContentCharset(String);
3790    method @Deprecated public void setHttpElementCharset(String);
3791    method @Deprecated public void setUseExpectContinue(boolean);
3792    method @Deprecated public void setUserAgent(String);
3793    method @Deprecated public void setVersion(org.apache.http.HttpVersion);
3794  }
3795
3796  @Deprecated public final class HttpProtocolParams implements org.apache.http.params.CoreProtocolPNames {
3797    method @Deprecated public static String getContentCharset(org.apache.http.params.HttpParams);
3798    method @Deprecated public static String getHttpElementCharset(org.apache.http.params.HttpParams);
3799    method @Deprecated public static String getUserAgent(org.apache.http.params.HttpParams);
3800    method @Deprecated public static org.apache.http.ProtocolVersion getVersion(org.apache.http.params.HttpParams);
3801    method @Deprecated public static void setContentCharset(org.apache.http.params.HttpParams, String);
3802    method @Deprecated public static void setHttpElementCharset(org.apache.http.params.HttpParams, String);
3803    method @Deprecated public static void setUseExpectContinue(org.apache.http.params.HttpParams, boolean);
3804    method @Deprecated public static void setUserAgent(org.apache.http.params.HttpParams, String);
3805    method @Deprecated public static void setVersion(org.apache.http.params.HttpParams, org.apache.http.ProtocolVersion);
3806    method @Deprecated public static boolean useExpectContinue(org.apache.http.params.HttpParams);
3807  }
3808
3809}
3810
3811package org.apache.http.protocol {
3812
3813  @Deprecated public class BasicHttpContext implements org.apache.http.protocol.HttpContext {
3814    ctor @Deprecated public BasicHttpContext();
3815    ctor @Deprecated public BasicHttpContext(org.apache.http.protocol.HttpContext);
3816    method @Deprecated public Object getAttribute(String);
3817    method @Deprecated public Object removeAttribute(String);
3818    method @Deprecated public void setAttribute(String, Object);
3819  }
3820
3821  @Deprecated public final class BasicHttpProcessor implements java.lang.Cloneable org.apache.http.protocol.HttpProcessor org.apache.http.protocol.HttpRequestInterceptorList org.apache.http.protocol.HttpResponseInterceptorList {
3822    ctor @Deprecated public BasicHttpProcessor();
3823    method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor);
3824    method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor, int);
3825    method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor);
3826    method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor, int);
3827    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3828    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3829    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
3830    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3831    method @Deprecated public void clearInterceptors();
3832    method @Deprecated public void clearRequestInterceptors();
3833    method @Deprecated public void clearResponseInterceptors();
3834    method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3835    method @Deprecated public org.apache.http.protocol.BasicHttpProcessor copy();
3836    method @Deprecated protected void copyInterceptors(org.apache.http.protocol.BasicHttpProcessor);
3837    method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3838    method @Deprecated public int getRequestInterceptorCount();
3839    method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3840    method @Deprecated public int getResponseInterceptorCount();
3841    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3842    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3843    method @Deprecated public void removeRequestInterceptorByClass(Class);
3844    method @Deprecated public void removeResponseInterceptorByClass(Class);
3845    method @Deprecated public void setInterceptors(java.util.List);
3846    field @Deprecated protected java.util.List requestInterceptors;
3847    field @Deprecated protected java.util.List responseInterceptors;
3848  }
3849
3850  @Deprecated public final class DefaultedHttpContext implements org.apache.http.protocol.HttpContext {
3851    ctor @Deprecated public DefaultedHttpContext(org.apache.http.protocol.HttpContext, org.apache.http.protocol.HttpContext);
3852    method @Deprecated public Object getAttribute(String);
3853    method @Deprecated public org.apache.http.protocol.HttpContext getDefaults();
3854    method @Deprecated public Object removeAttribute(String);
3855    method @Deprecated public void setAttribute(String, Object);
3856  }
3857
3858  @Deprecated public interface ExecutionContext {
3859    field @Deprecated public static final String HTTP_CONNECTION = "http.connection";
3860    field @Deprecated public static final String HTTP_PROXY_HOST = "http.proxy_host";
3861    field @Deprecated public static final String HTTP_REQUEST = "http.request";
3862    field @Deprecated public static final String HTTP_REQ_SENT = "http.request_sent";
3863    field @Deprecated public static final String HTTP_RESPONSE = "http.response";
3864    field @Deprecated public static final String HTTP_TARGET_HOST = "http.target_host";
3865  }
3866
3867  @Deprecated public final class HTTP {
3868    method @Deprecated public static boolean isWhitespace(char);
3869    field @Deprecated public static final String ASCII = "ASCII";
3870    field @Deprecated public static final String CHARSET_PARAM = "; charset=";
3871    field @Deprecated public static final String CHUNK_CODING = "chunked";
3872    field @Deprecated public static final String CONN_CLOSE = "Close";
3873    field @Deprecated public static final String CONN_DIRECTIVE = "Connection";
3874    field @Deprecated public static final String CONN_KEEP_ALIVE = "Keep-Alive";
3875    field @Deprecated public static final String CONTENT_ENCODING = "Content-Encoding";
3876    field @Deprecated public static final String CONTENT_LEN = "Content-Length";
3877    field @Deprecated public static final String CONTENT_TYPE = "Content-Type";
3878    field @Deprecated public static final int CR = 13; // 0xd
3879    field @Deprecated public static final String DATE_HEADER = "Date";
3880    field @Deprecated public static final String DEFAULT_CONTENT_CHARSET = "ISO-8859-1";
3881    field @Deprecated public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
3882    field @Deprecated public static final String DEFAULT_PROTOCOL_CHARSET = "US-ASCII";
3883    field @Deprecated public static final String EXPECT_CONTINUE = "100-continue";
3884    field @Deprecated public static final String EXPECT_DIRECTIVE = "Expect";
3885    field @Deprecated public static final int HT = 9; // 0x9
3886    field @Deprecated public static final String IDENTITY_CODING = "identity";
3887    field @Deprecated public static final String ISO_8859_1 = "ISO-8859-1";
3888    field @Deprecated public static final int LF = 10; // 0xa
3889    field @Deprecated public static final String OCTET_STREAM_TYPE = "application/octet-stream";
3890    field @Deprecated public static final String PLAIN_TEXT_TYPE = "text/plain";
3891    field @Deprecated public static final String SERVER_HEADER = "Server";
3892    field @Deprecated public static final int SP = 32; // 0x20
3893    field @Deprecated public static final String TARGET_HOST = "Host";
3894    field @Deprecated public static final String TRANSFER_ENCODING = "Transfer-Encoding";
3895    field @Deprecated public static final String USER_AGENT = "User-Agent";
3896    field @Deprecated public static final String US_ASCII = "US-ASCII";
3897    field @Deprecated public static final String UTF_16 = "UTF-16";
3898    field @Deprecated public static final String UTF_8 = "UTF-8";
3899  }
3900
3901  @Deprecated public interface HttpContext {
3902    method @Deprecated public Object getAttribute(String);
3903    method @Deprecated public Object removeAttribute(String);
3904    method @Deprecated public void setAttribute(String, Object);
3905    field @Deprecated public static final String RESERVED_PREFIX = "http.";
3906  }
3907
3908  @Deprecated public class HttpDateGenerator {
3909    ctor @Deprecated public HttpDateGenerator();
3910    method @Deprecated public String getCurrentDate();
3911    field @Deprecated public static final java.util.TimeZone GMT;
3912    field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
3913  }
3914
3915  @Deprecated public interface HttpExpectationVerifier {
3916    method @Deprecated public void verify(org.apache.http.HttpRequest, org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException;
3917  }
3918
3919  @Deprecated public interface HttpProcessor extends org.apache.http.HttpRequestInterceptor org.apache.http.HttpResponseInterceptor {
3920  }
3921
3922  @Deprecated public class HttpRequestExecutor {
3923    ctor @Deprecated public HttpRequestExecutor();
3924    method @Deprecated protected boolean canResponseHaveBody(org.apache.http.HttpRequest, org.apache.http.HttpResponse);
3925    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;
3926    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;
3927    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;
3928    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;
3929    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;
3930  }
3931
3932  @Deprecated public interface HttpRequestHandler {
3933    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;
3934  }
3935
3936  @Deprecated public class HttpRequestHandlerRegistry implements org.apache.http.protocol.HttpRequestHandlerResolver {
3937    ctor @Deprecated public HttpRequestHandlerRegistry();
3938    method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3939    method @Deprecated protected boolean matchUriRequestPattern(String, String);
3940    method @Deprecated public void register(String, org.apache.http.protocol.HttpRequestHandler);
3941    method @Deprecated public void setHandlers(java.util.Map);
3942    method @Deprecated public void unregister(String);
3943  }
3944
3945  @Deprecated public interface HttpRequestHandlerResolver {
3946    method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3947  }
3948
3949  @Deprecated public interface HttpRequestInterceptorList {
3950    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3951    method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3952    method @Deprecated public void clearRequestInterceptors();
3953    method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3954    method @Deprecated public int getRequestInterceptorCount();
3955    method @Deprecated public void removeRequestInterceptorByClass(Class);
3956    method @Deprecated public void setInterceptors(java.util.List);
3957  }
3958
3959  @Deprecated public interface HttpResponseInterceptorList {
3960    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3961    method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int);
3962    method @Deprecated public void clearResponseInterceptors();
3963    method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3964    method @Deprecated public int getResponseInterceptorCount();
3965    method @Deprecated public void removeResponseInterceptorByClass(Class);
3966    method @Deprecated public void setInterceptors(java.util.List);
3967  }
3968
3969  @Deprecated public class HttpService {
3970    ctor @Deprecated public HttpService(org.apache.http.protocol.HttpProcessor, org.apache.http.ConnectionReuseStrategy, org.apache.http.HttpResponseFactory);
3971    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;
3972    method @Deprecated public org.apache.http.params.HttpParams getParams();
3973    method @Deprecated protected void handleException(org.apache.http.HttpException, org.apache.http.HttpResponse);
3974    method @Deprecated public void handleRequest(org.apache.http.HttpServerConnection, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3975    method @Deprecated public void setConnReuseStrategy(org.apache.http.ConnectionReuseStrategy);
3976    method @Deprecated public void setExpectationVerifier(org.apache.http.protocol.HttpExpectationVerifier);
3977    method @Deprecated public void setHandlerResolver(org.apache.http.protocol.HttpRequestHandlerResolver);
3978    method @Deprecated public void setHttpProcessor(org.apache.http.protocol.HttpProcessor);
3979    method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3980    method @Deprecated public void setResponseFactory(org.apache.http.HttpResponseFactory);
3981  }
3982
3983  @Deprecated public class RequestConnControl implements org.apache.http.HttpRequestInterceptor {
3984    ctor @Deprecated public RequestConnControl();
3985    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3986  }
3987
3988  @Deprecated public class RequestContent implements org.apache.http.HttpRequestInterceptor {
3989    ctor @Deprecated public RequestContent();
3990    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3991  }
3992
3993  @Deprecated public class RequestDate implements org.apache.http.HttpRequestInterceptor {
3994    ctor @Deprecated public RequestDate();
3995    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
3996  }
3997
3998  @Deprecated public class RequestExpectContinue implements org.apache.http.HttpRequestInterceptor {
3999    ctor @Deprecated public RequestExpectContinue();
4000    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4001  }
4002
4003  @Deprecated public class RequestTargetHost implements org.apache.http.HttpRequestInterceptor {
4004    ctor @Deprecated public RequestTargetHost();
4005    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4006  }
4007
4008  @Deprecated public class RequestUserAgent implements org.apache.http.HttpRequestInterceptor {
4009    ctor @Deprecated public RequestUserAgent();
4010    method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4011  }
4012
4013  @Deprecated public class ResponseConnControl implements org.apache.http.HttpResponseInterceptor {
4014    ctor @Deprecated public ResponseConnControl();
4015    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4016  }
4017
4018  @Deprecated public class ResponseContent implements org.apache.http.HttpResponseInterceptor {
4019    ctor @Deprecated public ResponseContent();
4020    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4021  }
4022
4023  @Deprecated public class ResponseDate implements org.apache.http.HttpResponseInterceptor {
4024    ctor @Deprecated public ResponseDate();
4025    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4026  }
4027
4028  @Deprecated public class ResponseServer implements org.apache.http.HttpResponseInterceptor {
4029    ctor @Deprecated public ResponseServer();
4030    method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext) throws org.apache.http.HttpException, java.io.IOException;
4031  }
4032
4033  @Deprecated public class SyncBasicHttpContext extends org.apache.http.protocol.BasicHttpContext {
4034    ctor @Deprecated public SyncBasicHttpContext(org.apache.http.protocol.HttpContext);
4035  }
4036
4037  @Deprecated public class UriPatternMatcher {
4038    ctor @Deprecated public UriPatternMatcher();
4039    method @Deprecated public Object lookup(String);
4040    method @Deprecated protected boolean matchUriRequestPattern(String, String);
4041    method @Deprecated public void register(String, Object);
4042    method @Deprecated public void setHandlers(java.util.Map);
4043    method @Deprecated public void unregister(String);
4044  }
4045
4046}
4047
4048package org.apache.http.util {
4049
4050  @Deprecated public final class ByteArrayBuffer {
4051    ctor @Deprecated public ByteArrayBuffer(int);
4052    method @Deprecated public void append(byte[], int, int);
4053    method @Deprecated public void append(int);
4054    method @Deprecated public void append(char[], int, int);
4055    method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4056    method @Deprecated public byte[] buffer();
4057    method @Deprecated public int byteAt(int);
4058    method @Deprecated public int capacity();
4059    method @Deprecated public void clear();
4060    method @Deprecated public boolean isEmpty();
4061    method @Deprecated public boolean isFull();
4062    method @Deprecated public int length();
4063    method @Deprecated public void setLength(int);
4064    method @Deprecated public byte[] toByteArray();
4065  }
4066
4067  @Deprecated public final class CharArrayBuffer {
4068    ctor @Deprecated public CharArrayBuffer(int);
4069    method @Deprecated public void append(char[], int, int);
4070    method @Deprecated public void append(String);
4071    method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4072    method @Deprecated public void append(org.apache.http.util.CharArrayBuffer);
4073    method @Deprecated public void append(char);
4074    method @Deprecated public void append(byte[], int, int);
4075    method @Deprecated public void append(org.apache.http.util.ByteArrayBuffer, int, int);
4076    method @Deprecated public void append(Object);
4077    method @Deprecated public char[] buffer();
4078    method @Deprecated public int capacity();
4079    method @Deprecated public char charAt(int);
4080    method @Deprecated public void clear();
4081    method @Deprecated public void ensureCapacity(int);
4082    method @Deprecated public int indexOf(int, int, int);
4083    method @Deprecated public int indexOf(int);
4084    method @Deprecated public boolean isEmpty();
4085    method @Deprecated public boolean isFull();
4086    method @Deprecated public int length();
4087    method @Deprecated public void setLength(int);
4088    method @Deprecated public String substring(int, int);
4089    method @Deprecated public String substringTrimmed(int, int);
4090    method @Deprecated public char[] toCharArray();
4091  }
4092
4093  @Deprecated public final class EncodingUtils {
4094    method @Deprecated public static byte[] getAsciiBytes(String);
4095    method @Deprecated public static String getAsciiString(byte[], int, int);
4096    method @Deprecated public static String getAsciiString(byte[]);
4097    method @Deprecated public static byte[] getBytes(String, String);
4098    method @Deprecated public static String getString(byte[], int, int, String);
4099    method @Deprecated public static String getString(byte[], String);
4100  }
4101
4102  @Deprecated public final class EntityUtils {
4103    method @Deprecated public static String getContentCharSet(org.apache.http.HttpEntity) throws org.apache.http.ParseException;
4104    method @Deprecated public static byte[] toByteArray(org.apache.http.HttpEntity) throws java.io.IOException;
4105    method @Deprecated public static String toString(org.apache.http.HttpEntity, String) throws java.io.IOException, org.apache.http.ParseException;
4106    method @Deprecated public static String toString(org.apache.http.HttpEntity) throws java.io.IOException, org.apache.http.ParseException;
4107  }
4108
4109  @Deprecated public final class ExceptionUtils {
4110    method @Deprecated public static void initCause(Throwable, Throwable);
4111  }
4112
4113  @Deprecated public final class LangUtils {
4114    method @Deprecated public static boolean equals(Object, Object);
4115    method @Deprecated public static boolean equals(Object[], Object[]);
4116    method @Deprecated public static int hashCode(int, int);
4117    method @Deprecated public static int hashCode(int, boolean);
4118    method @Deprecated public static int hashCode(int, Object);
4119    field @Deprecated public static final int HASH_OFFSET = 37; // 0x25
4120    field @Deprecated public static final int HASH_SEED = 17; // 0x11
4121  }
4122
4123  @Deprecated public class VersionInfo {
4124    ctor @Deprecated protected VersionInfo(String, String, String, String, String);
4125    method @Deprecated protected static final org.apache.http.util.VersionInfo fromMap(String, java.util.Map, ClassLoader);
4126    method @Deprecated public final String getClassloader();
4127    method @Deprecated public final String getModule();
4128    method @Deprecated public final String getPackage();
4129    method @Deprecated public final String getRelease();
4130    method @Deprecated public final String getTimestamp();
4131    method @Deprecated public static final org.apache.http.util.VersionInfo[] loadVersionInfo(String[], ClassLoader);
4132    method @Deprecated public static final org.apache.http.util.VersionInfo loadVersionInfo(String, ClassLoader);
4133    field @Deprecated public static final String PROPERTY_MODULE = "info.module";
4134    field @Deprecated public static final String PROPERTY_RELEASE = "info.release";
4135    field @Deprecated public static final String PROPERTY_TIMESTAMP = "info.timestamp";
4136    field @Deprecated public static final String UNAVAILABLE = "UNAVAILABLE";
4137    field @Deprecated public static final String VERSION_PROPERTY_FILE = "version.properties";
4138  }
4139
4140}
4141
4142