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