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