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