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