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