Lines Matching refs:Deprecated

327     method @Deprecated public static String getBoundary();
348 …field @Deprecated protected static final String BOUNDARY = "----------------314159265358979323846";
349 field @Deprecated protected static final byte[] BOUNDARY_BYTES;
398 @Deprecated public interface BinaryDecoder extends org.apache.commons.codec.Decoder {
399 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
402 @Deprecated public interface BinaryEncoder extends org.apache.commons.codec.Encoder {
403 … method @Deprecated public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException;
406 @Deprecated public interface Decoder {
407 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
410 @Deprecated public class DecoderException extends java.lang.Exception {
411 ctor @Deprecated public DecoderException(String);
414 @Deprecated public interface Encoder {
415 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
418 @Deprecated public class EncoderException extends java.lang.Exception {
419 ctor @Deprecated public EncoderException(String);
422 @Deprecated public interface StringDecoder extends org.apache.commons.codec.Decoder {
423 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
426 @Deprecated public interface StringEncoder extends org.apache.commons.codec.Encoder {
427 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
430 @Deprecated public class StringEncoderComparator implements java.util.Comparator {
431 ctor @Deprecated public StringEncoderComparator();
432 ctor @Deprecated public StringEncoderComparator(org.apache.commons.codec.StringEncoder);
433 method @Deprecated public int compare(Object, Object);
440 …@Deprecated public class Base64 implements org.apache.commons.codec.BinaryDecoder org.apache.commo…
441 ctor @Deprecated public Base64();
442 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
443 method @Deprecated public byte[] decode(byte[]);
444 method @Deprecated public static byte[] decodeBase64(byte[]);
445 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
446 method @Deprecated public byte[] encode(byte[]);
447 method @Deprecated public static byte[] encodeBase64(byte[]);
448 method @Deprecated public static byte[] encodeBase64(byte[], boolean);
449 method @Deprecated public static byte[] encodeBase64Chunked(byte[]);
450 method @Deprecated public static boolean isArrayByteBase64(byte[]);
453 …@Deprecated public class BinaryCodec implements org.apache.commons.codec.BinaryDecoder org.apache.…
454 ctor @Deprecated public BinaryCodec();
455 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
456 method @Deprecated public byte[] decode(byte[]);
457 method @Deprecated public byte[] encode(byte[]);
458 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
459 method @Deprecated public static byte[] fromAscii(char[]);
460 method @Deprecated public static byte[] fromAscii(byte[]);
461 method @Deprecated public static byte[] toAsciiBytes(byte[]);
462 method @Deprecated public static char[] toAsciiChars(byte[]);
463 method @Deprecated public static String toAsciiString(byte[]);
464 method @Deprecated public byte[] toByteArray(String);
467 …@Deprecated public class Hex implements org.apache.commons.codec.BinaryDecoder org.apache.commons.…
468 ctor @Deprecated public Hex();
469 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
470 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
471 …method @Deprecated public static byte[] decodeHex(char[]) throws org.apache.commons.codec.DecoderE…
472 method @Deprecated public byte[] encode(byte[]);
473 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
474 method @Deprecated public static char[] encodeHex(byte[]);
475 …method @Deprecated protected static int toDigit(char, int) throws org.apache.commons.codec.Decoder…
482 @Deprecated public class DoubleMetaphone implements org.apache.commons.codec.StringEncoder {
483 ctor @Deprecated public DoubleMetaphone();
484 method @Deprecated protected char charAt(String, int);
485 method @Deprecated protected static boolean contains(String, int, int, String[]);
486 method @Deprecated public String doubleMetaphone(String);
487 method @Deprecated public String doubleMetaphone(String, boolean);
488 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
489 method @Deprecated public String encode(String);
490 method @Deprecated public int getMaxCodeLen();
491 method @Deprecated public boolean isDoubleMetaphoneEqual(String, String);
492 method @Deprecated public boolean isDoubleMetaphoneEqual(String, String, boolean);
493 method @Deprecated public void setMaxCodeLen(int);
494 field @Deprecated protected int maxCodeLen;
497 @Deprecated public class DoubleMetaphone.DoubleMetaphoneResult {
498 ctor @Deprecated public DoubleMetaphone.DoubleMetaphoneResult(int);
499 method @Deprecated public void append(char);
500 method @Deprecated public void append(char, char);
501 method @Deprecated public void append(String);
502 method @Deprecated public void append(String, String);
503 method @Deprecated public void appendAlternate(char);
504 method @Deprecated public void appendAlternate(String);
505 method @Deprecated public void appendPrimary(char);
506 method @Deprecated public void appendPrimary(String);
507 method @Deprecated public String getAlternate();
508 method @Deprecated public String getPrimary();
509 method @Deprecated public boolean isComplete();
512 @Deprecated public class Metaphone implements org.apache.commons.codec.StringEncoder {
513 ctor @Deprecated public Metaphone();
514 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
515 method @Deprecated public String encode(String);
516 method @Deprecated public int getMaxCodeLen();
517 method @Deprecated public boolean isMetaphoneEqual(String, String);
518 method @Deprecated public String metaphone(String);
519 method @Deprecated public void setMaxCodeLen(int);
522 @Deprecated public class RefinedSoundex implements org.apache.commons.codec.StringEncoder {
523 ctor @Deprecated public RefinedSoundex();
524 ctor @Deprecated public RefinedSoundex(char[]);
525 …method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderEx…
526 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
527 method @Deprecated public String encode(String);
528 method @Deprecated public String soundex(String);
529 … field @Deprecated public static final org.apache.commons.codec.language.RefinedSoundex US_ENGLISH;
530 field @Deprecated public static final char[] US_ENGLISH_MAPPING;
533 @Deprecated public class Soundex implements org.apache.commons.codec.StringEncoder {
534 ctor @Deprecated public Soundex();
535 ctor @Deprecated public Soundex(char[]);
536 …method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderEx…
537 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
538 method @Deprecated public String encode(String);
539 method @Deprecated public int getMaxLength();
540 method @Deprecated public void setMaxLength(int);
541 method @Deprecated public String soundex(String);
542 field @Deprecated public static final org.apache.commons.codec.language.Soundex US_ENGLISH;
543 field @Deprecated public static final char[] US_ENGLISH_MAPPING;
544 …field @Deprecated public static final String US_ENGLISH_MAPPING_STRING = "012301200224550126230102…
551 …@Deprecated public class BCodec implements org.apache.commons.codec.StringDecoder org.apache.commo…
552 ctor @Deprecated public BCodec();
553 ctor @Deprecated public BCodec(String);
554 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
555 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
556 …method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderExce…
557 …method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderExce…
558 …method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderExc…
559 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
560 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
561 method @Deprecated public String getDefaultCharset();
562 method @Deprecated protected String getEncoding();
565 …@Deprecated public class QCodec implements org.apache.commons.codec.StringDecoder org.apache.commo…
566 ctor @Deprecated public QCodec();
567 ctor @Deprecated public QCodec(String);
568 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
569 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
570 …method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderExce…
571 …method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderExce…
572 …method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderExc…
573 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
574 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
575 method @Deprecated public String getDefaultCharset();
576 method @Deprecated protected String getEncoding();
577 method @Deprecated public boolean isEncodeBlanks();
578 method @Deprecated public void setEncodeBlanks(boolean);
581 …@Deprecated public class QuotedPrintableCodec implements org.apache.commons.codec.BinaryDecoder or…
582 ctor @Deprecated public QuotedPrintableCodec();
583 ctor @Deprecated public QuotedPrintableCodec(String);
584 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
585 …method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderExc…
586 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
587 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
588 …method @Deprecated public static final byte[] decodeQuotedPrintable(byte[]) throws org.apache.comm…
589 method @Deprecated public byte[] encode(byte[]);
590 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
591 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
592 …method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingExceptio…
593 method @Deprecated public static final byte[] encodeQuotedPrintable(java.util.BitSet, byte[]);
594 method @Deprecated public String getDefaultCharset();
597 …@Deprecated public class URLCodec implements org.apache.commons.codec.BinaryDecoder org.apache.com…
598 ctor @Deprecated public URLCodec();
599 ctor @Deprecated public URLCodec(String);
600 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
601 …method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderExc…
602 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
603 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
604 …method @Deprecated public static final byte[] decodeUrl(byte[]) throws org.apache.commons.codec.De…
605 method @Deprecated public byte[] encode(byte[]);
606 …method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingExceptio…
607 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
608 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
609 method @Deprecated public static final byte[] encodeUrl(java.util.BitSet, byte[]);
610 method @Deprecated public String getDefaultCharset();
611 method @Deprecated public String getEncoding();
612 field @Deprecated protected static byte ESCAPE_CHAR;
613 field @Deprecated protected static final java.util.BitSet WWW_FORM_URL;
614 field @Deprecated protected String charset;
621 @Deprecated public interface Log {
622 method @Deprecated public void debug(Object);
623 method @Deprecated public void debug(Object, Throwable);
624 method @Deprecated public void error(Object);
625 method @Deprecated public void error(Object, Throwable);
626 method @Deprecated public void fatal(Object);
627 method @Deprecated public void fatal(Object, Throwable);
628 method @Deprecated public void info(Object);
629 method @Deprecated public void info(Object, Throwable);
630 method @Deprecated public boolean isDebugEnabled();
631 method @Deprecated public boolean isErrorEnabled();
632 method @Deprecated public boolean isFatalEnabled();
633 method @Deprecated public boolean isInfoEnabled();
634 method @Deprecated public boolean isTraceEnabled();
635 method @Deprecated public boolean isWarnEnabled();
636 method @Deprecated public void trace(Object);
637 method @Deprecated public void trace(Object, Throwable);
638 method @Deprecated public void warn(Object);
639 method @Deprecated public void warn(Object, Throwable);
642 @Deprecated public class LogConfigurationException extends java.lang.RuntimeException {
643 ctor @Deprecated public LogConfigurationException();
644 ctor @Deprecated public LogConfigurationException(String);
645 ctor @Deprecated public LogConfigurationException(Throwable);
646 ctor @Deprecated public LogConfigurationException(String, Throwable);
647 field @Deprecated protected Throwable cause;
650 @Deprecated public abstract class LogFactory {
651 ctor @Deprecated protected LogFactory();
652 method @Deprecated protected static Object createFactory(String, ClassLoader);
653 …method @Deprecated protected static ClassLoader directGetContextClassLoader() throws org.apache.co…
654 method @Deprecated public abstract Object getAttribute(String);
655 method @Deprecated public abstract String[] getAttributeNames();
656 method @Deprecated protected static ClassLoader getClassLoader(Class);
657 …method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.…
658 …method @Deprecated public static org.apache.commons.logging.LogFactory getFactory() throws org.apa…
659 …method @Deprecated public abstract org.apache.commons.logging.Log getInstance(Class) throws org.ap…
660 …method @Deprecated public abstract org.apache.commons.logging.Log getInstance(String) throws org.a…
661 …method @Deprecated public static org.apache.commons.logging.Log getLog(Class) throws org.apache.co…
662 …method @Deprecated public static org.apache.commons.logging.Log getLog(String) throws org.apache.c…
663 method @Deprecated protected static boolean isDiagnosticsEnabled();
664 method @Deprecated protected static final void logRawDiagnostic(String);
665 …method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, Class…
666 …method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, Class…
667 method @Deprecated public static String objectId(Object);
668 method @Deprecated public abstract void release();
669 method @Deprecated public static void release(ClassLoader);
670 method @Deprecated public static void releaseAll();
671 method @Deprecated public abstract void removeAttribute(String);
672 method @Deprecated public abstract void setAttribute(String, Object);
673 …field @Deprecated public static final String DIAGNOSTICS_DEST_PROPERTY = "org.apache.commons.loggi…
674 …field @Deprecated public static final String FACTORY_DEFAULT = "org.apache.commons.logging.impl.Lo…
675 field @Deprecated public static final String FACTORY_PROPERTIES = "commons-logging.properties";
676 …field @Deprecated public static final String FACTORY_PROPERTY = "org.apache.commons.logging.LogFac…
677 …field @Deprecated public static final String HASHTABLE_IMPLEMENTATION_PROPERTY = "org.apache.commo…
678 field @Deprecated public static final String PRIORITY_KEY = "priority";
679 …field @Deprecated protected static final String SERVICE_ID = "META-INF/services/org.apache.commons…
680 field @Deprecated public static final String TCCL_KEY = "use_tccl";
681 field @Deprecated protected static java.util.Hashtable factories;
682 field @Deprecated protected static org.apache.commons.logging.LogFactory nullClassLoaderFactory;
685 @Deprecated public class LogSource {
686 method @Deprecated public static org.apache.commons.logging.Log getInstance(String);
687 method @Deprecated public static org.apache.commons.logging.Log getInstance(Class);
688 method @Deprecated public static String[] getLogNames();
689 method @Deprecated public static org.apache.commons.logging.Log makeNewLogInstance(String);
690 …method @Deprecated public static void setLogImplementation(String) throws java.lang.ClassNotFoundE…
691 …method @Deprecated public static void setLogImplementation(Class) throws java.lang.ExceptionInInit…
692 field @Deprecated protected static boolean jdk14IsAvailable;
693 field @Deprecated protected static boolean log4jIsAvailable;
694 field @Deprecated protected static java.lang.reflect.Constructor logImplctor;
695 field @Deprecated protected static java.util.Hashtable logs;
702 …@Deprecated public class Jdk14Logger implements org.apache.commons.logging.Log java.io.Serializabl…
703 ctor @Deprecated public Jdk14Logger(String);
704 method @Deprecated public void debug(Object);
705 method @Deprecated public void debug(Object, Throwable);
706 method @Deprecated public void error(Object);
707 method @Deprecated public void error(Object, Throwable);
708 method @Deprecated public void fatal(Object);
709 method @Deprecated public void fatal(Object, Throwable);
710 method @Deprecated public java.util.logging.Logger getLogger();
711 method @Deprecated public void info(Object);
712 method @Deprecated public void info(Object, Throwable);
713 method @Deprecated public boolean isDebugEnabled();
714 method @Deprecated public boolean isErrorEnabled();
715 method @Deprecated public boolean isFatalEnabled();
716 method @Deprecated public boolean isInfoEnabled();
717 method @Deprecated public boolean isTraceEnabled();
718 method @Deprecated public boolean isWarnEnabled();
719 method @Deprecated public void trace(Object);
720 method @Deprecated public void trace(Object, Throwable);
721 method @Deprecated public void warn(Object);
722 method @Deprecated public void warn(Object, Throwable);
723 field @Deprecated protected static final java.util.logging.Level dummyLevel;
724 field @Deprecated protected transient java.util.logging.Logger logger;
725 field @Deprecated protected String name;
728 @Deprecated public class LogFactoryImpl extends org.apache.commons.logging.LogFactory {
729 ctor @Deprecated public LogFactoryImpl();
730 method @Deprecated public Object getAttribute(String);
731 method @Deprecated public String[] getAttributeNames();
732 method @Deprecated protected static ClassLoader getClassLoader(Class);
733 …method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.…
734 …method @Deprecated public org.apache.commons.logging.Log getInstance(Class) throws org.apache.comm…
735 …method @Deprecated public org.apache.commons.logging.Log getInstance(String) throws org.apache.com…
736 method @Deprecated protected String getLogClassName();
737 …method @Deprecated protected java.lang.reflect.Constructor getLogConstructor() throws org.apache.c…
738 method @Deprecated protected static boolean isDiagnosticsEnabled();
739 method @Deprecated protected boolean isJdk13LumberjackAvailable();
740 method @Deprecated protected boolean isJdk14Available();
741 method @Deprecated protected boolean isLog4JAvailable();
742 method @Deprecated protected void logDiagnostic(String);
743 …method @Deprecated protected org.apache.commons.logging.Log newInstance(String) throws org.apache.…
744 method @Deprecated public void release();
745 method @Deprecated public void removeAttribute(String);
746 method @Deprecated public void setAttribute(String, Object);
747 …field @Deprecated public static final String ALLOW_FLAWED_CONTEXT_PROPERTY = "org.apache.commons.l…
748 …field @Deprecated public static final String ALLOW_FLAWED_DISCOVERY_PROPERTY = "org.apache.commons…
749 …field @Deprecated public static final String ALLOW_FLAWED_HIERARCHY_PROPERTY = "org.apache.commons…
750 field @Deprecated public static final String LOG_PROPERTY = "org.apache.commons.logging.Log";
751 …field @Deprecated protected static final String LOG_PROPERTY_OLD = "org.apache.commons.logging.log…
752 field @Deprecated protected java.util.Hashtable attributes;
753 field @Deprecated protected java.util.Hashtable instances;
754 field @Deprecated protected java.lang.reflect.Constructor logConstructor;
755 field @Deprecated protected Class[] logConstructorSignature;
756 field @Deprecated protected java.lang.reflect.Method logMethod;
757 field @Deprecated protected Class[] logMethodSignature;
760 @Deprecated public class NoOpLog implements org.apache.commons.logging.Log java.io.Serializable {
761 ctor @Deprecated public NoOpLog();
762 ctor @Deprecated public NoOpLog(String);
763 method @Deprecated public void debug(Object);
764 method @Deprecated public void debug(Object, Throwable);
765 method @Deprecated public void error(Object);
766 method @Deprecated public void error(Object, Throwable);
767 method @Deprecated public void fatal(Object);
768 method @Deprecated public void fatal(Object, Throwable);
769 method @Deprecated public void info(Object);
770 method @Deprecated public void info(Object, Throwable);
771 method @Deprecated public final boolean isDebugEnabled();
772 method @Deprecated public final boolean isErrorEnabled();
773 method @Deprecated public final boolean isFatalEnabled();
774 method @Deprecated public final boolean isInfoEnabled();
775 method @Deprecated public final boolean isTraceEnabled();
776 method @Deprecated public final boolean isWarnEnabled();
777 method @Deprecated public void trace(Object);
778 method @Deprecated public void trace(Object, Throwable);
779 method @Deprecated public void warn(Object);
780 method @Deprecated public void warn(Object, Throwable);
783 …@Deprecated public class SimpleLog implements org.apache.commons.logging.Log java.io.Serializable {
784 ctor @Deprecated public SimpleLog(String);
785 method @Deprecated public final void debug(Object);
786 method @Deprecated public final void debug(Object, Throwable);
787 method @Deprecated public final void error(Object);
788 method @Deprecated public final void error(Object, Throwable);
789 method @Deprecated public final void fatal(Object);
790 method @Deprecated public final void fatal(Object, Throwable);
791 method @Deprecated public int getLevel();
792 method @Deprecated public final void info(Object);
793 method @Deprecated public final void info(Object, Throwable);
794 method @Deprecated public final boolean isDebugEnabled();
795 method @Deprecated public final boolean isErrorEnabled();
796 method @Deprecated public final boolean isFatalEnabled();
797 method @Deprecated public final boolean isInfoEnabled();
798 method @Deprecated protected boolean isLevelEnabled(int);
799 method @Deprecated public final boolean isTraceEnabled();
800 method @Deprecated public final boolean isWarnEnabled();
801 method @Deprecated protected void log(int, Object, Throwable);
802 method @Deprecated public void setLevel(int);
803 method @Deprecated public final void trace(Object);
804 method @Deprecated public final void trace(Object, Throwable);
805 method @Deprecated public final void warn(Object);
806 method @Deprecated public final void warn(Object, Throwable);
807 method @Deprecated protected void write(StringBuffer);
808 …field @Deprecated protected static final String DEFAULT_DATE_TIME_FORMAT = "yyyy/MM/dd HH:mm:ss:SS…
809 field @Deprecated public static final int LOG_LEVEL_ALL = 0; // 0x0
810 field @Deprecated public static final int LOG_LEVEL_DEBUG = 2; // 0x2
811 field @Deprecated public static final int LOG_LEVEL_ERROR = 5; // 0x5
812 field @Deprecated public static final int LOG_LEVEL_FATAL = 6; // 0x6
813 field @Deprecated public static final int LOG_LEVEL_INFO = 3; // 0x3
814 field @Deprecated public static final int LOG_LEVEL_OFF = 7; // 0x7
815 field @Deprecated public static final int LOG_LEVEL_TRACE = 1; // 0x1
816 field @Deprecated public static final int LOG_LEVEL_WARN = 4; // 0x4
817 field @Deprecated protected int currentLogLevel;
818 field @Deprecated protected static java.text.DateFormat dateFormatter;
819 field @Deprecated protected static String dateTimeFormat;
820 field @Deprecated protected String logName;
821 field @Deprecated protected static boolean showDateTime;
822 field @Deprecated protected static boolean showLogName;
823 field @Deprecated protected static boolean showShortName;
824 field @Deprecated protected static final java.util.Properties simpleLogProps;
825 …field @Deprecated protected static final String systemPrefix = "org.apache.commons.logging.simplel…
828 @Deprecated public final class WeakHashtable extends java.util.Hashtable {
829 ctor @Deprecated public WeakHashtable();
830 method @Deprecated public java.util.Enumeration elements();
831 method @Deprecated public java.util.Set entrySet();
832 method @Deprecated public Object get(Object);
833 method @Deprecated public java.util.Set keySet();
834 method @Deprecated public java.util.Enumeration keys();
835 method @Deprecated public Object put(Object, Object);
836 method @Deprecated public void putAll(java.util.Map);
837 method @Deprecated public Object remove(Object);
838 method @Deprecated public java.util.Collection values();
845 @Deprecated public class ConnectionClosedException extends java.io.IOException {
846 ctor @Deprecated public ConnectionClosedException(String);
849 @Deprecated public interface ConnectionReuseStrategy {
850 …method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol…
853 @Deprecated public interface FormattedHeader extends org.apache.http.Header {
854 method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
855 method @Deprecated public int getValuePos();
858 @Deprecated public interface Header {
859 …method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.Par…
860 method @Deprecated public String getName();
861 method @Deprecated public String getValue();
864 @Deprecated public interface HeaderElement {
865 method @Deprecated public String getName();
866 method @Deprecated public org.apache.http.NameValuePair getParameter(int);
867 method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
868 method @Deprecated public int getParameterCount();
869 method @Deprecated public org.apache.http.NameValuePair[] getParameters();
870 method @Deprecated public String getValue();
873 @Deprecated public interface HeaderElementIterator extends java.util.Iterator {
874 method @Deprecated public org.apache.http.HeaderElement nextElement();
877 @Deprecated public interface HeaderIterator extends java.util.Iterator {
878 method @Deprecated public org.apache.http.Header nextHeader();
881 @Deprecated public interface HttpClientConnection extends org.apache.http.HttpConnection {
882 method @Deprecated public void flush() throws java.io.IOException;
883 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
884 …method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apac…
885 …method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.h…
886 …method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throw…
887 …method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.ht…
890 @Deprecated public interface HttpConnection {
891 method @Deprecated public void close() throws java.io.IOException;
892 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
893 method @Deprecated public int getSocketTimeout();
894 method @Deprecated public boolean isOpen();
895 method @Deprecated public boolean isStale();
896 method @Deprecated public void setSocketTimeout(int);
897 method @Deprecated public void shutdown() throws java.io.IOException;
900 @Deprecated public interface HttpConnectionMetrics {
901 method @Deprecated public Object getMetric(String);
902 method @Deprecated public long getReceivedBytesCount();
903 method @Deprecated public long getRequestCount();
904 method @Deprecated public long getResponseCount();
905 method @Deprecated public long getSentBytesCount();
906 method @Deprecated public void reset();
909 @Deprecated public interface HttpEntity {
910 method @Deprecated public void consumeContent() throws java.io.IOException;
911 …method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.I…
912 method @Deprecated public org.apache.http.Header getContentEncoding();
913 method @Deprecated public long getContentLength();
914 method @Deprecated public org.apache.http.Header getContentType();
915 method @Deprecated public boolean isChunked();
916 method @Deprecated public boolean isRepeatable();
917 method @Deprecated public boolean isStreaming();
918 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
921 @Deprecated public interface HttpEntityEnclosingRequest extends org.apache.http.HttpRequest {
922 method @Deprecated public boolean expectContinue();
923 method @Deprecated public org.apache.http.HttpEntity getEntity();
924 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
927 @Deprecated public class HttpException extends java.lang.Exception {
928 ctor @Deprecated public HttpException();
929 ctor @Deprecated public HttpException(String);
930 ctor @Deprecated public HttpException(String, Throwable);
933 @Deprecated public final class HttpHost implements java.lang.Cloneable {
934 ctor @Deprecated public HttpHost(String, int, String);
935 ctor @Deprecated public HttpHost(String, int);
936 ctor @Deprecated public HttpHost(String);
937 ctor @Deprecated public HttpHost(org.apache.http.HttpHost);
938 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
939 method @Deprecated public String getHostName();
940 method @Deprecated public int getPort();
941 method @Deprecated public String getSchemeName();
942 method @Deprecated public String toHostString();
943 method @Deprecated public String toURI();
944 field @Deprecated public static final String DEFAULT_SCHEME_NAME = "http";
945 field @Deprecated protected final String hostname;
946 field @Deprecated protected final String lcHostname;
947 field @Deprecated protected final int port;
948 field @Deprecated protected final String schemeName;
951 @Deprecated public interface HttpInetConnection extends org.apache.http.HttpConnection {
952 method @Deprecated public java.net.InetAddress getLocalAddress();
953 method @Deprecated public int getLocalPort();
954 method @Deprecated public java.net.InetAddress getRemoteAddress();
955 method @Deprecated public int getRemotePort();
958 @Deprecated public interface HttpMessage {
959 method @Deprecated public void addHeader(org.apache.http.Header);
960 method @Deprecated public void addHeader(String, String);
961 method @Deprecated public boolean containsHeader(String);
962 method @Deprecated public org.apache.http.Header[] getAllHeaders();
963 method @Deprecated public org.apache.http.Header getFirstHeader(String);
964 method @Deprecated public org.apache.http.Header[] getHeaders(String);
965 method @Deprecated public org.apache.http.Header getLastHeader(String);
966 method @Deprecated public org.apache.http.params.HttpParams getParams();
967 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
968 method @Deprecated public org.apache.http.HeaderIterator headerIterator();
969 method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
970 method @Deprecated public void removeHeader(org.apache.http.Header);
971 method @Deprecated public void removeHeaders(String);
972 method @Deprecated public void setHeader(org.apache.http.Header);
973 method @Deprecated public void setHeader(String, String);
974 method @Deprecated public void setHeaders(org.apache.http.Header[]);
975 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
978 @Deprecated public interface HttpRequest extends org.apache.http.HttpMessage {
979 method @Deprecated public org.apache.http.RequestLine getRequestLine();
982 @Deprecated public interface HttpRequestFactory {
983 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) …
984 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.ap…
987 @Deprecated public interface HttpRequestInterceptor {
988 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
991 @Deprecated public interface HttpResponse extends org.apache.http.HttpMessage {
992 method @Deprecated public org.apache.http.HttpEntity getEntity();
993 method @Deprecated public java.util.Locale getLocale();
994 method @Deprecated public org.apache.http.StatusLine getStatusLine();
995 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
996 method @Deprecated public void setLocale(java.util.Locale);
997 method @Deprecated public void setReasonPhrase(String) throws java.lang.IllegalStateException;
998 method @Deprecated public void setStatusCode(int) throws java.lang.IllegalStateException;
999 method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
1000 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
1001 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
1004 @Deprecated public interface HttpResponseFactory {
1005 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVer…
1006 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine,…
1009 @Deprecated public interface HttpResponseInterceptor {
1010 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
1013 @Deprecated public interface HttpServerConnection extends org.apache.http.HttpConnection {
1014 method @Deprecated public void flush() throws java.io.IOException;
1015 …method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) th…
1016 …method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.htt…
1017 …method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.…
1018 …method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.…
1021 @Deprecated public interface HttpStatus {
1022 field @Deprecated public static final int SC_ACCEPTED = 202; // 0xca
1023 field @Deprecated public static final int SC_BAD_GATEWAY = 502; // 0x1f6
1024 field @Deprecated public static final int SC_BAD_REQUEST = 400; // 0x190
1025 field @Deprecated public static final int SC_CONFLICT = 409; // 0x199
1026 field @Deprecated public static final int SC_CONTINUE = 100; // 0x64
1027 field @Deprecated public static final int SC_CREATED = 201; // 0xc9
1028 field @Deprecated public static final int SC_EXPECTATION_FAILED = 417; // 0x1a1
1029 field @Deprecated public static final int SC_FAILED_DEPENDENCY = 424; // 0x1a8
1030 field @Deprecated public static final int SC_FORBIDDEN = 403; // 0x193
1031 field @Deprecated public static final int SC_GATEWAY_TIMEOUT = 504; // 0x1f8
1032 field @Deprecated public static final int SC_GONE = 410; // 0x19a
1033 field @Deprecated public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505; // 0x1f9
1034 field @Deprecated public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419; // 0x1a3
1035 field @Deprecated public static final int SC_INSUFFICIENT_STORAGE = 507; // 0x1fb
1036 field @Deprecated public static final int SC_INTERNAL_SERVER_ERROR = 500; // 0x1f4
1037 field @Deprecated public static final int SC_LENGTH_REQUIRED = 411; // 0x19b
1038 field @Deprecated public static final int SC_LOCKED = 423; // 0x1a7
1039 field @Deprecated public static final int SC_METHOD_FAILURE = 420; // 0x1a4
1040 field @Deprecated public static final int SC_METHOD_NOT_ALLOWED = 405; // 0x195
1041 field @Deprecated public static final int SC_MOVED_PERMANENTLY = 301; // 0x12d
1042 field @Deprecated public static final int SC_MOVED_TEMPORARILY = 302; // 0x12e
1043 field @Deprecated public static final int SC_MULTIPLE_CHOICES = 300; // 0x12c
1044 field @Deprecated public static final int SC_MULTI_STATUS = 207; // 0xcf
1045 field @Deprecated public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203; // 0xcb
1046 field @Deprecated public static final int SC_NOT_ACCEPTABLE = 406; // 0x196
1047 field @Deprecated public static final int SC_NOT_FOUND = 404; // 0x194
1048 field @Deprecated public static final int SC_NOT_IMPLEMENTED = 501; // 0x1f5
1049 field @Deprecated public static final int SC_NOT_MODIFIED = 304; // 0x130
1050 field @Deprecated public static final int SC_NO_CONTENT = 204; // 0xcc
1051 field @Deprecated public static final int SC_OK = 200; // 0xc8
1052 field @Deprecated public static final int SC_PARTIAL_CONTENT = 206; // 0xce
1053 field @Deprecated public static final int SC_PAYMENT_REQUIRED = 402; // 0x192
1054 field @Deprecated public static final int SC_PRECONDITION_FAILED = 412; // 0x19c
1055 field @Deprecated public static final int SC_PROCESSING = 102; // 0x66
1056 field @Deprecated public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407; // 0x197
1057 field @Deprecated public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416; // 0x1a0
1058 field @Deprecated public static final int SC_REQUEST_TIMEOUT = 408; // 0x198
1059 field @Deprecated public static final int SC_REQUEST_TOO_LONG = 413; // 0x19d
1060 field @Deprecated public static final int SC_REQUEST_URI_TOO_LONG = 414; // 0x19e
1061 field @Deprecated public static final int SC_RESET_CONTENT = 205; // 0xcd
1062 field @Deprecated public static final int SC_SEE_OTHER = 303; // 0x12f
1063 field @Deprecated public static final int SC_SERVICE_UNAVAILABLE = 503; // 0x1f7
1064 field @Deprecated public static final int SC_SWITCHING_PROTOCOLS = 101; // 0x65
1065 field @Deprecated public static final int SC_TEMPORARY_REDIRECT = 307; // 0x133
1066 field @Deprecated public static final int SC_UNAUTHORIZED = 401; // 0x191
1067 field @Deprecated public static final int SC_UNPROCESSABLE_ENTITY = 422; // 0x1a6
1068 field @Deprecated public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415; // 0x19f
1069 field @Deprecated public static final int SC_USE_PROXY = 305; // 0x131
1072 …@Deprecated public final class HttpVersion extends org.apache.http.ProtocolVersion implements java…
1073 ctor @Deprecated public HttpVersion(int, int);
1074 field @Deprecated public static final String HTTP = "HTTP";
1075 field @Deprecated public static final org.apache.http.HttpVersion HTTP_0_9;
1076 field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_0;
1077 field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_1;
1080 @Deprecated public class MalformedChunkCodingException extends java.io.IOException {
1081 ctor @Deprecated public MalformedChunkCodingException();
1082 ctor @Deprecated public MalformedChunkCodingException(String);
1085 @Deprecated public class MethodNotSupportedException extends org.apache.http.HttpException {
1086 ctor @Deprecated public MethodNotSupportedException(String);
1087 ctor @Deprecated public MethodNotSupportedException(String, Throwable);
1090 @Deprecated public interface NameValuePair {
1091 method @Deprecated public String getName();
1092 method @Deprecated public String getValue();
1095 @Deprecated public class NoHttpResponseException extends java.io.IOException {
1096 ctor @Deprecated public NoHttpResponseException(String);
1099 @Deprecated public class ParseException extends java.lang.RuntimeException {
1100 ctor @Deprecated public ParseException();
1101 ctor @Deprecated public ParseException(String);
1104 @Deprecated public class ProtocolException extends org.apache.http.HttpException {
1105 ctor @Deprecated public ProtocolException();
1106 ctor @Deprecated public ProtocolException(String);
1107 ctor @Deprecated public ProtocolException(String, Throwable);
1110 @Deprecated public class ProtocolVersion implements java.lang.Cloneable java.io.Serializable {
1111 ctor @Deprecated public ProtocolVersion(String, int, int);
1112 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1113 method @Deprecated public int compareToVersion(org.apache.http.ProtocolVersion);
1114 method @Deprecated public final boolean equals(Object);
1115 method @Deprecated public org.apache.http.ProtocolVersion forVersion(int, int);
1116 method @Deprecated public final int getMajor();
1117 method @Deprecated public final int getMinor();
1118 method @Deprecated public final String getProtocol();
1119 method @Deprecated public final boolean greaterEquals(org.apache.http.ProtocolVersion);
1120 method @Deprecated public final int hashCode();
1121 method @Deprecated public boolean isComparable(org.apache.http.ProtocolVersion);
1122 method @Deprecated public final boolean lessEquals(org.apache.http.ProtocolVersion);
1123 field @Deprecated protected final int major;
1124 field @Deprecated protected final int minor;
1125 field @Deprecated protected final String protocol;
1128 @Deprecated public interface ReasonPhraseCatalog {
1129 method @Deprecated public String getReason(int, java.util.Locale);
1132 @Deprecated public interface RequestLine {
1133 method @Deprecated public String getMethod();
1134 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1135 method @Deprecated public String getUri();
1138 @Deprecated public interface StatusLine {
1139 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1140 method @Deprecated public String getReasonPhrase();
1141 method @Deprecated public int getStatusCode();
1144 @Deprecated public interface TokenIterator extends java.util.Iterator {
1145 method @Deprecated public String nextToken();
1148 …@Deprecated public class UnsupportedHttpVersionException extends org.apache.http.ProtocolException…
1149 ctor @Deprecated public UnsupportedHttpVersionException();
1150 ctor @Deprecated public UnsupportedHttpVersionException(String);
1157 @Deprecated public final class AUTH {
1158 field @Deprecated public static final String PROXY_AUTH = "Proxy-Authenticate";
1159 field @Deprecated public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
1160 field @Deprecated public static final String WWW_AUTH = "WWW-Authenticate";
1161 field @Deprecated public static final String WWW_AUTH_RESP = "Authorization";
1164 @Deprecated public interface AuthScheme {
1165 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
1166 method @Deprecated public String getParameter(String);
1167 method @Deprecated public String getRealm();
1168 method @Deprecated public String getSchemeName();
1169 method @Deprecated public boolean isComplete();
1170 method @Deprecated public boolean isConnectionBased();
1171 …method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.aut…
1174 @Deprecated public interface AuthSchemeFactory {
1175 …method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpP…
1178 @Deprecated public final class AuthSchemeRegistry {
1179 ctor @Deprecated public AuthSchemeRegistry();
1180 …method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme(String, org.apache.http.pa…
1181 method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1182 method @Deprecated public void register(String, org.apache.http.auth.AuthSchemeFactory);
1183 …method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.auth.AuthSc…
1184 method @Deprecated public void unregister(String);
1187 @Deprecated public class AuthScope {
1188 ctor @Deprecated public AuthScope(String, int, String, String);
1189 ctor @Deprecated public AuthScope(String, int, String);
1190 ctor @Deprecated public AuthScope(String, int);
1191 ctor @Deprecated public AuthScope(org.apache.http.auth.AuthScope);
1192 method @Deprecated public String getHost();
1193 method @Deprecated public int getPort();
1194 method @Deprecated public String getRealm();
1195 method @Deprecated public String getScheme();
1196 method @Deprecated public int match(org.apache.http.auth.AuthScope);
1197 field @Deprecated public static final org.apache.http.auth.AuthScope ANY;
1198 field @Deprecated public static final String ANY_HOST;
1199 field @Deprecated public static final int ANY_PORT = -1; // 0xffffffff
1200 field @Deprecated public static final String ANY_REALM;
1201 field @Deprecated public static final String ANY_SCHEME;
1204 @Deprecated public class AuthState {
1205 ctor @Deprecated public AuthState();
1206 method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme();
1207 method @Deprecated public org.apache.http.auth.AuthScope getAuthScope();
1208 method @Deprecated public org.apache.http.auth.Credentials getCredentials();
1209 method @Deprecated public void invalidate();
1210 method @Deprecated public boolean isValid();
1211 method @Deprecated public void setAuthScheme(org.apache.http.auth.AuthScheme);
1212 method @Deprecated public void setAuthScope(org.apache.http.auth.AuthScope);
1213 method @Deprecated public void setCredentials(org.apache.http.auth.Credentials);
1216 @Deprecated public class AuthenticationException extends org.apache.http.ProtocolException {
1217 ctor @Deprecated public AuthenticationException();
1218 ctor @Deprecated public AuthenticationException(String);
1219 ctor @Deprecated public AuthenticationException(String, Throwable);
1222 @Deprecated public final class BasicUserPrincipal implements java.security.Principal {
1223 ctor @Deprecated public BasicUserPrincipal(String);
1224 method @Deprecated public String getName();
1227 @Deprecated public interface Credentials {
1228 method @Deprecated public String getPassword();
1229 method @Deprecated public java.security.Principal getUserPrincipal();
1232 …@Deprecated public class InvalidCredentialsException extends org.apache.http.auth.AuthenticationEx…
1233 ctor @Deprecated public InvalidCredentialsException();
1234 ctor @Deprecated public InvalidCredentialsException(String);
1235 ctor @Deprecated public InvalidCredentialsException(String, Throwable);
1238 @Deprecated public class MalformedChallengeException extends org.apache.http.ProtocolException {
1239 ctor @Deprecated public MalformedChallengeException();
1240 ctor @Deprecated public MalformedChallengeException(String);
1241 ctor @Deprecated public MalformedChallengeException(String, Throwable);
1244 @Deprecated public class NTCredentials implements org.apache.http.auth.Credentials {
1245 ctor @Deprecated public NTCredentials(String);
1246 ctor @Deprecated public NTCredentials(String, String, String, String);
1247 method @Deprecated public String getDomain();
1248 method @Deprecated public String getPassword();
1249 method @Deprecated public String getUserName();
1250 method @Deprecated public java.security.Principal getUserPrincipal();
1251 method @Deprecated public String getWorkstation();
1254 @Deprecated public class NTUserPrincipal implements java.security.Principal {
1255 ctor @Deprecated public NTUserPrincipal(String, String);
1256 method @Deprecated public String getDomain();
1257 method @Deprecated public String getName();
1258 method @Deprecated public String getUsername();
1261 @Deprecated public class UsernamePasswordCredentials implements org.apache.http.auth.Credentials {
1262 ctor @Deprecated public UsernamePasswordCredentials(String);
1263 ctor @Deprecated public UsernamePasswordCredentials(String, String);
1264 method @Deprecated public String getPassword();
1265 method @Deprecated public String getUserName();
1266 method @Deprecated public java.security.Principal getUserPrincipal();
1273 @Deprecated public interface AuthPNames {
1274 … field @Deprecated public static final String CREDENTIAL_CHARSET = "http.auth.credential-charset";
1277 @Deprecated public class AuthParamBean extends org.apache.http.params.HttpAbstractParamBean {
1278 ctor @Deprecated public AuthParamBean(org.apache.http.params.HttpParams);
1279 method @Deprecated public void setCredentialCharset(String);
1282 @Deprecated public final class AuthParams {
1283 method @Deprecated public static String getCredentialCharset(org.apache.http.params.HttpParams);
1284 …method @Deprecated public static void setCredentialCharset(org.apache.http.params.HttpParams, Stri…
1291 @Deprecated public interface AuthenticationHandler {
1292 …method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org…
1293 …method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apac…
1294 …method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.Str…
1297 …@Deprecated public class CircularRedirectException extends org.apache.http.client.RedirectExceptio…
1298 ctor @Deprecated public CircularRedirectException();
1299 ctor @Deprecated public CircularRedirectException(String);
1300 ctor @Deprecated public CircularRedirectException(String, Throwable);
1303 @Deprecated public class ClientProtocolException extends java.io.IOException {
1304 ctor @Deprecated public ClientProtocolException();
1305 ctor @Deprecated public ClientProtocolException(String);
1306 ctor @Deprecated public ClientProtocolException(Throwable);
1307 ctor @Deprecated public ClientProtocolException(String, Throwable);
1310 @Deprecated public interface CookieStore {
1311 method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
1312 method @Deprecated public void clear();
1313 method @Deprecated public boolean clearExpired(java.util.Date);
1314 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
1317 @Deprecated public interface CredentialsProvider {
1318 method @Deprecated public void clear();
1319 …method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.Aut…
1320 …method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth…
1323 @Deprecated public interface HttpClient {
1324 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.Http…
1325 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.Http…
1326 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
1327 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
1328 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
1329 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
1330 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
1331 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
1332 method @Deprecated public org.apache.http.conn.ClientConnectionManager getConnectionManager();
1333 method @Deprecated public org.apache.http.params.HttpParams getParams();
1336 @Deprecated public interface HttpRequestRetryHandler {
1337 …method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.…
1340 …@Deprecated public class HttpResponseException extends org.apache.http.client.ClientProtocolExcept…
1341 ctor @Deprecated public HttpResponseException(int, String);
1342 method @Deprecated public int getStatusCode();
1345 @Deprecated public class NonRepeatableRequestException extends org.apache.http.ProtocolException {
1346 ctor @Deprecated public NonRepeatableRequestException();
1347 ctor @Deprecated public NonRepeatableRequestException(String);
1350 @Deprecated public class RedirectException extends org.apache.http.ProtocolException {
1351 ctor @Deprecated public RedirectException();
1352 ctor @Deprecated public RedirectException(String);
1353 ctor @Deprecated public RedirectException(String, Throwable);
1356 @Deprecated public interface RedirectHandler {
1357 …method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.htt…
1358 …method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.htt…
1361 @Deprecated public interface RequestDirector {
1362 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
1365 @Deprecated public interface ResponseHandler<T> {
1366 …method @Deprecated public T handleResponse(org.apache.http.HttpResponse) throws org.apache.http.cl…
1369 @Deprecated public interface UserTokenHandler {
1370 method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
1377 @Deprecated public class UrlEncodedFormEntity extends org.apache.http.entity.StringEntity {
1378 …ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePai…
1379 …ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePai…
1386 @Deprecated public interface AbortableHttpRequest {
1387 method @Deprecated public void abort();
1388 …method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) …
1389 …method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) th…
1392 @Deprecated public class HttpDelete extends org.apache.http.client.methods.HttpRequestBase {
1393 ctor @Deprecated public HttpDelete();
1394 ctor @Deprecated public HttpDelete(java.net.URI);
1395 ctor @Deprecated public HttpDelete(String);
1396 method @Deprecated public String getMethod();
1397 field @Deprecated public static final String METHOD_NAME = "DELETE";
1400 …@Deprecated public abstract class HttpEntityEnclosingRequestBase extends org.apache.http.client.me…
1401 ctor @Deprecated public HttpEntityEnclosingRequestBase();
1402 method @Deprecated public boolean expectContinue();
1403 method @Deprecated public org.apache.http.HttpEntity getEntity();
1404 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
1407 @Deprecated public class HttpGet extends org.apache.http.client.methods.HttpRequestBase {
1408 ctor @Deprecated public HttpGet();
1409 ctor @Deprecated public HttpGet(java.net.URI);
1410 ctor @Deprecated public HttpGet(String);
1411 method @Deprecated public String getMethod();
1412 field @Deprecated public static final String METHOD_NAME = "GET";
1415 @Deprecated public class HttpHead extends org.apache.http.client.methods.HttpRequestBase {
1416 ctor @Deprecated public HttpHead();
1417 ctor @Deprecated public HttpHead(java.net.URI);
1418 ctor @Deprecated public HttpHead(String);
1419 method @Deprecated public String getMethod();
1420 field @Deprecated public static final String METHOD_NAME = "HEAD";
1423 @Deprecated public class HttpOptions extends org.apache.http.client.methods.HttpRequestBase {
1424 ctor @Deprecated public HttpOptions();
1425 ctor @Deprecated public HttpOptions(java.net.URI);
1426 ctor @Deprecated public HttpOptions(String);
1427 …method @Deprecated public java.util.Set<java.lang.String> getAllowedMethods(org.apache.http.HttpRe…
1428 method @Deprecated public String getMethod();
1429 field @Deprecated public static final String METHOD_NAME = "OPTIONS";
1432 …@Deprecated public class HttpPost extends org.apache.http.client.methods.HttpEntityEnclosingReques…
1433 ctor @Deprecated public HttpPost();
1434 ctor @Deprecated public HttpPost(java.net.URI);
1435 ctor @Deprecated public HttpPost(String);
1436 method @Deprecated public String getMethod();
1437 field @Deprecated public static final String METHOD_NAME = "POST";
1440 …@Deprecated public class HttpPut extends org.apache.http.client.methods.HttpEntityEnclosingRequest…
1441 ctor @Deprecated public HttpPut();
1442 ctor @Deprecated public HttpPut(java.net.URI);
1443 ctor @Deprecated public HttpPut(String);
1444 method @Deprecated public String getMethod();
1445 field @Deprecated public static final String METHOD_NAME = "PUT";
1448 …@Deprecated public abstract class HttpRequestBase extends org.apache.http.message.AbstractHttpMess…
1449 ctor @Deprecated public HttpRequestBase();
1450 method @Deprecated public void abort();
1451 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1452 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1453 method @Deprecated public org.apache.http.RequestLine getRequestLine();
1454 method @Deprecated public java.net.URI getURI();
1455 method @Deprecated public boolean isAborted();
1456 …method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) …
1457 …method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) th…
1458 method @Deprecated public void setURI(java.net.URI);
1461 @Deprecated public class HttpTrace extends org.apache.http.client.methods.HttpRequestBase {
1462 ctor @Deprecated public HttpTrace();
1463 ctor @Deprecated public HttpTrace(java.net.URI);
1464 ctor @Deprecated public HttpTrace(String);
1465 method @Deprecated public String getMethod();
1466 field @Deprecated public static final String METHOD_NAME = "TRACE";
1469 @Deprecated public interface HttpUriRequest extends org.apache.http.HttpRequest {
1470 method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
1471 method @Deprecated public String getMethod();
1472 method @Deprecated public java.net.URI getURI();
1473 method @Deprecated public boolean isAborted();
1480 …@Deprecated public interface AllClientPNames extends org.apache.http.params.CoreConnectionPNames o…
1483 @Deprecated public final class AuthPolicy {
1484 field @Deprecated public static final String BASIC = "Basic";
1485 field @Deprecated public static final String DIGEST = "Digest";
1486 field @Deprecated public static final String NTLM = "NTLM";
1489 @Deprecated public interface ClientPNames {
1490 …field @Deprecated public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circu…
1491 …field @Deprecated public static final String CONNECTION_MANAGER_FACTORY = "http.connection-manager…
1492 …field @Deprecated public static final String CONNECTION_MANAGER_FACTORY_CLASS_NAME = "http.connect…
1493 field @Deprecated public static final String COOKIE_POLICY = "http.protocol.cookie-policy";
1494 field @Deprecated public static final String DEFAULT_HEADERS = "http.default-headers";
1495 field @Deprecated public static final String DEFAULT_HOST = "http.default-host";
1496 …field @Deprecated public static final String HANDLE_AUTHENTICATION = "http.protocol.handle-authent…
1497 … field @Deprecated public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
1498 field @Deprecated public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
1499 …field @Deprecated public static final String REJECT_RELATIVE_REDIRECT = "http.protocol.reject-rela…
1500 field @Deprecated public static final String VIRTUAL_HOST = "http.virtual-host";
1503 @Deprecated public class ClientParamBean extends org.apache.http.params.HttpAbstractParamBean {
1504 ctor @Deprecated public ClientParamBean(org.apache.http.params.HttpParams);
1505 method @Deprecated public void setAllowCircularRedirects(boolean);
1506 …method @Deprecated public void setConnectionManagerFactory(org.apache.http.conn.ClientConnectionMa…
1507 method @Deprecated public void setConnectionManagerFactoryClassName(String);
1508 method @Deprecated public void setCookiePolicy(String);
1509 method @Deprecated public void setDefaultHeaders(java.util.Collection<org.apache.http.Header>);
1510 method @Deprecated public void setDefaultHost(org.apache.http.HttpHost);
1511 method @Deprecated public void setHandleAuthentication(boolean);
1512 method @Deprecated public void setHandleRedirects(boolean);
1513 method @Deprecated public void setMaxRedirects(int);
1514 method @Deprecated public void setRejectRelativeRedirect(boolean);
1515 method @Deprecated public void setVirtualHost(org.apache.http.HttpHost);
1518 @Deprecated public final class CookiePolicy {
1519 field @Deprecated public static final String BEST_MATCH = "best-match";
1520 field @Deprecated public static final String BROWSER_COMPATIBILITY = "compatibility";
1521 field @Deprecated public static final String NETSCAPE = "netscape";
1522 field @Deprecated public static final String RFC_2109 = "rfc2109";
1523 field @Deprecated public static final String RFC_2965 = "rfc2965";
1526 @Deprecated public class HttpClientParams {
1527 method @Deprecated public static String getCookiePolicy(org.apache.http.params.HttpParams);
1528 method @Deprecated public static boolean isAuthenticating(org.apache.http.params.HttpParams);
1529 method @Deprecated public static boolean isRedirecting(org.apache.http.params.HttpParams);
1530 …method @Deprecated public static void setAuthenticating(org.apache.http.params.HttpParams, boolean…
1531 … method @Deprecated public static void setCookiePolicy(org.apache.http.params.HttpParams, String);
1532 … method @Deprecated public static void setRedirecting(org.apache.http.params.HttpParams, boolean);
1539 @Deprecated public interface ClientContext {
1540 field @Deprecated public static final String AUTHSCHEME_REGISTRY = "http.authscheme-registry";
1541 field @Deprecated public static final String AUTH_SCHEME_PREF = "http.auth.scheme-pref";
1542 field @Deprecated public static final String COOKIESPEC_REGISTRY = "http.cookiespec-registry";
1543 field @Deprecated public static final String COOKIE_ORIGIN = "http.cookie-origin";
1544 field @Deprecated public static final String COOKIE_SPEC = "http.cookie-spec";
1545 field @Deprecated public static final String COOKIE_STORE = "http.cookie-store";
1546 field @Deprecated public static final String CREDS_PROVIDER = "http.auth.credentials-provider";
1547 field @Deprecated public static final String PROXY_AUTH_STATE = "http.auth.proxy-scope";
1548 field @Deprecated public static final String TARGET_AUTH_STATE = "http.auth.target-scope";
1549 field @Deprecated public static final String USER_TOKEN = "http.user-token";
1552 …@Deprecated public class ClientContextConfigurer implements org.apache.http.client.protocol.Client…
1553 ctor @Deprecated public ClientContextConfigurer(org.apache.http.protocol.HttpContext);
1554 method @Deprecated public void setAuthSchemePref(java.util.List<java.lang.String>);
1555 method @Deprecated public void setAuthSchemeRegistry(org.apache.http.auth.AuthSchemeRegistry);
1556 method @Deprecated public void setCookieSpecRegistry(org.apache.http.cookie.CookieSpecRegistry);
1557 method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
1558 … method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
1561 @Deprecated public class RequestAddCookies implements org.apache.http.HttpRequestInterceptor {
1562 ctor @Deprecated public RequestAddCookies();
1563 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1566 @Deprecated public class RequestDefaultHeaders implements org.apache.http.HttpRequestInterceptor {
1567 ctor @Deprecated public RequestDefaultHeaders();
1568 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1571 …@Deprecated public class RequestProxyAuthentication implements org.apache.http.HttpRequestIntercep…
1572 ctor @Deprecated public RequestProxyAuthentication();
1573 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1576 …@Deprecated public class RequestTargetAuthentication implements org.apache.http.HttpRequestInterce…
1577 ctor @Deprecated public RequestTargetAuthentication();
1578 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1581 …@Deprecated public class ResponseProcessCookies implements org.apache.http.HttpResponseInterceptor…
1582 ctor @Deprecated public ResponseProcessCookies();
1583 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
1590 @Deprecated public class CloneUtils {
1591 … method @Deprecated public static Object clone(Object) throws java.lang.CloneNotSupportedException;
1594 @Deprecated public class URIUtils {
1595 …method @Deprecated public static java.net.URI createURI(String, String, int, String, String, Strin…
1596 method @Deprecated public static java.net.URI resolve(java.net.URI, String);
1597 method @Deprecated public static java.net.URI resolve(java.net.URI, java.net.URI);
1598 …method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost, b…
1599 …method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost) t…
1602 @Deprecated public class URLEncodedUtils {
1603 ctor @Deprecated public URLEncodedUtils();
1604 …method @Deprecated public static String format(java.util.List<? extends org.apache.http.NameValueP…
1605 method @Deprecated public static boolean isEncoded(org.apache.http.HttpEntity);
1606 …method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(java.net.URI,…
1607 …method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(org.apache.ht…
1608 …method @Deprecated public static void parse(java.util.List<org.apache.http.NameValuePair>, java.ut…
1609 field @Deprecated public static final String CONTENT_TYPE = "application/x-www-form-urlencoded";
1616 @Deprecated public class BasicEofSensorWatcher implements org.apache.http.conn.EofSensorWatcher {
1617 …ctor @Deprecated public BasicEofSensorWatcher(org.apache.http.conn.ManagedClientConnection, boolea…
1618 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1619 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1620 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1621 field @Deprecated protected boolean attemptReuse;
1622 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
1625 …@Deprecated public class BasicManagedEntity extends org.apache.http.entity.HttpEntityWrapper imple…
1626 …ctor @Deprecated public BasicManagedEntity(org.apache.http.HttpEntity, org.apache.http.conn.Manage…
1627 method @Deprecated public void abortConnection() throws java.io.IOException;
1628 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1629 method @Deprecated public void releaseConnection() throws java.io.IOException;
1630 method @Deprecated protected void releaseManagedConnection() throws java.io.IOException;
1631 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1632 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1633 field @Deprecated protected final boolean attemptReuse;
1634 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
1637 @Deprecated public interface ClientConnectionManager {
1638 method @Deprecated public void closeExpiredConnections();
1639 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
1640 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
1641 …method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, lon…
1642 …method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apach…
1643 method @Deprecated public void shutdown();
1646 @Deprecated public interface ClientConnectionManagerFactory {
1647 …method @Deprecated public org.apache.http.conn.ClientConnectionManager newInstance(org.apache.http…
1650 @Deprecated public interface ClientConnectionOperator {
1651 method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
1652 …method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.a…
1653 …method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnectio…
1656 @Deprecated public interface ClientConnectionRequest {
1657 method @Deprecated public void abortRequest();
1658 …method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(long, java.ut…
1661 @Deprecated public interface ConnectionKeepAliveStrategy {
1662 …method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.…
1665 …@Deprecated public class ConnectionPoolTimeoutException extends org.apache.http.conn.ConnectTimeou…
1666 ctor @Deprecated public ConnectionPoolTimeoutException();
1667 ctor @Deprecated public ConnectionPoolTimeoutException(String);
1670 @Deprecated public interface ConnectionReleaseTrigger {
1671 method @Deprecated public void abortConnection() throws java.io.IOException;
1672 method @Deprecated public void releaseConnection() throws java.io.IOException;
1675 …@Deprecated public class EofSensorInputStream extends java.io.InputStream implements org.apache.ht…
1676 …ctor @Deprecated public EofSensorInputStream(java.io.InputStream, org.apache.http.conn.EofSensorWa…
1677 method @Deprecated public void abortConnection() throws java.io.IOException;
1678 method @Deprecated protected void checkAbort() throws java.io.IOException;
1679 method @Deprecated protected void checkClose() throws java.io.IOException;
1680 method @Deprecated protected void checkEOF(int) throws java.io.IOException;
1681 method @Deprecated protected boolean isReadAllowed() throws java.io.IOException;
1682 method @Deprecated public int read() throws java.io.IOException;
1683 method @Deprecated public void releaseConnection() throws java.io.IOException;
1684 field @Deprecated protected java.io.InputStream wrappedStream;
1687 @Deprecated public interface EofSensorWatcher {
1688 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1689 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1690 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1693 @Deprecated public class HttpHostConnectException extends java.net.ConnectException {
1694 …ctor @Deprecated public HttpHostConnectException(org.apache.http.HttpHost, java.net.ConnectExcepti…
1695 method @Deprecated public org.apache.http.HttpHost getHost();
1698 …@Deprecated public interface ManagedClientConnection extends org.apache.http.HttpClientConnection …
1699 method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
1700 method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
1701 method @Deprecated public Object getState();
1702 method @Deprecated public boolean isMarkedReusable();
1703 method @Deprecated public boolean isSecure();
1704 …method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http…
1705 method @Deprecated public void markReusable();
1706 …method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protoc…
1707 method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
1708 method @Deprecated public void setState(Object);
1709 …method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.para…
1710 …method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws jav…
1711 method @Deprecated public void unmarkReusable();
1714 …@Deprecated public final class MultihomePlainSocketFactory implements org.apache.http.conn.scheme.…
1715 …method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.Ine…
1716 method @Deprecated public java.net.Socket createSocket();
1717 …method @Deprecated public static org.apache.http.conn.MultihomePlainSocketFactory getSocketFactory…
1718 …method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentExcept…
1721 …@Deprecated public interface OperatedClientConnection extends org.apache.http.HttpClientConnection…
1722 method @Deprecated public java.net.Socket getSocket();
1723 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1724 method @Deprecated public boolean isSecure();
1725 …method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws ja…
1726 …method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.I…
1727 …method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apac…
1734 @Deprecated public interface ConnConnectionPNames {
1735 …field @Deprecated public static final String MAX_STATUS_LINE_GARBAGE = "http.connection.max-status…
1738 …@Deprecated public class ConnConnectionParamBean extends org.apache.http.params.HttpAbstractParamB…
1739 ctor @Deprecated public ConnConnectionParamBean(org.apache.http.params.HttpParams);
1740 method @Deprecated public void setMaxStatusLineGarbage(int);
1743 @Deprecated public interface ConnManagerPNames {
1744 …field @Deprecated public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-pe…
1745 …field @Deprecated public static final String MAX_TOTAL_CONNECTIONS = "http.conn-manager.max-total";
1746 field @Deprecated public static final String TIMEOUT = "http.conn-manager.timeout";
1749 …@Deprecated public class ConnManagerParamBean extends org.apache.http.params.HttpAbstractParamBean…
1750 ctor @Deprecated public ConnManagerParamBean(org.apache.http.params.HttpParams);
1751 …method @Deprecated public void setConnectionsPerRoute(org.apache.http.conn.params.ConnPerRouteBean…
1752 method @Deprecated public void setMaxTotalConnections(int);
1753 method @Deprecated public void setTimeout(long);
1756 …@Deprecated public final class ConnManagerParams implements org.apache.http.conn.params.ConnManage…
1757 ctor @Deprecated public ConnManagerParams();
1758 …method @Deprecated public static org.apache.http.conn.params.ConnPerRoute getMaxConnectionsPerRout…
1759 method @Deprecated public static int getMaxTotalConnections(org.apache.http.params.HttpParams);
1760 method @Deprecated public static long getTimeout(org.apache.http.params.HttpParams);
1761 …method @Deprecated public static void setMaxConnectionsPerRoute(org.apache.http.params.HttpParams,…
1762 …method @Deprecated public static void setMaxTotalConnections(org.apache.http.params.HttpParams, in…
1763 method @Deprecated public static void setTimeout(org.apache.http.params.HttpParams, long);
1764 field @Deprecated public static final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20; // 0x14
1767 @Deprecated public interface ConnPerRoute {
1768 method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1771 …@Deprecated public final class ConnPerRouteBean implements org.apache.http.conn.params.ConnPerRout…
1772 ctor @Deprecated public ConnPerRouteBean(int);
1773 ctor @Deprecated public ConnPerRouteBean();
1774 method @Deprecated public int getDefaultMax();
1775 method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1776 method @Deprecated public void setDefaultMaxPerRoute(int);
1777 method @Deprecated public void setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int);
1778 …method @Deprecated public void setMaxForRoutes(java.util.Map<org.apache.http.conn.routing.HttpRout…
1779 field @Deprecated public static final int DEFAULT_MAX_CONNECTIONS_PER_ROUTE = 2; // 0x2
1782 @Deprecated public interface ConnRoutePNames {
1783 field @Deprecated public static final String DEFAULT_PROXY = "http.route.default-proxy";
1784 field @Deprecated public static final String FORCED_ROUTE = "http.route.forced-route";
1785 field @Deprecated public static final String LOCAL_ADDRESS = "http.route.local-address";
1788 @Deprecated public class ConnRouteParamBean extends org.apache.http.params.HttpAbstractParamBean {
1789 ctor @Deprecated public ConnRouteParamBean(org.apache.http.params.HttpParams);
1790 method @Deprecated public void setDefaultProxy(org.apache.http.HttpHost);
1791 method @Deprecated public void setForcedRoute(org.apache.http.conn.routing.HttpRoute);
1792 method @Deprecated public void setLocalAddress(java.net.InetAddress);
1795 @Deprecated public class ConnRouteParams implements org.apache.http.conn.params.ConnRoutePNames {
1796 …method @Deprecated public static org.apache.http.HttpHost getDefaultProxy(org.apache.http.params.H…
1797 …method @Deprecated public static org.apache.http.conn.routing.HttpRoute getForcedRoute(org.apache.…
1798 …method @Deprecated public static java.net.InetAddress getLocalAddress(org.apache.http.params.HttpP…
1799 …method @Deprecated public static void setDefaultProxy(org.apache.http.params.HttpParams, org.apach…
1800 …method @Deprecated public static void setForcedRoute(org.apache.http.params.HttpParams, org.apache…
1801 …method @Deprecated public static void setLocalAddress(org.apache.http.params.HttpParams, java.net.…
1802 field @Deprecated public static final org.apache.http.HttpHost NO_HOST;
1803 field @Deprecated public static final org.apache.http.conn.routing.HttpRoute NO_ROUTE;
1810 …@Deprecated public class BasicRouteDirector implements org.apache.http.conn.routing.HttpRouteDirec…
1811 ctor @Deprecated public BasicRouteDirector();
1812 …method @Deprecated protected int directStep(org.apache.http.conn.routing.RouteInfo, org.apache.htt…
1813 method @Deprecated protected int firstStep(org.apache.http.conn.routing.RouteInfo);
1814 …method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.con…
1815 …method @Deprecated protected int proxiedStep(org.apache.http.conn.routing.RouteInfo, org.apache.ht…
1818 …@Deprecated public final class HttpRoute implements java.lang.Cloneable org.apache.http.conn.routi…
1819 …ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.…
1820 …ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.…
1821 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, boolean);
1822 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost);
1823 …ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.…
1824 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1825 method @Deprecated public int getHopCount();
1826 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1827 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1828 method @Deprecated public java.net.InetAddress getLocalAddress();
1829 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1830 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1831 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1832 method @Deprecated public boolean isLayered();
1833 method @Deprecated public boolean isSecure();
1834 method @Deprecated public boolean isTunnelled();
1837 @Deprecated public interface HttpRouteDirector {
1838 …method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.con…
1839 field @Deprecated public static final int COMPLETE = 0; // 0x0
1840 field @Deprecated public static final int CONNECT_PROXY = 2; // 0x2
1841 field @Deprecated public static final int CONNECT_TARGET = 1; // 0x1
1842 field @Deprecated public static final int LAYER_PROTOCOL = 5; // 0x5
1843 field @Deprecated public static final int TUNNEL_PROXY = 4; // 0x4
1844 field @Deprecated public static final int TUNNEL_TARGET = 3; // 0x3
1845 field @Deprecated public static final int UNREACHABLE = -1; // 0xffffffff
1848 @Deprecated public interface HttpRoutePlanner {
1849 …method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.Ht…
1852 @Deprecated public interface RouteInfo {
1853 method @Deprecated public int getHopCount();
1854 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1855 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1856 method @Deprecated public java.net.InetAddress getLocalAddress();
1857 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1858 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1859 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1860 method @Deprecated public boolean isLayered();
1861 method @Deprecated public boolean isSecure();
1862 method @Deprecated public boolean isTunnelled();
1865 @Deprecated public enum RouteInfo.LayerType {
1866 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType LAY…
1867 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType PLA…
1870 @Deprecated public enum RouteInfo.TunnelType {
1871 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType PL…
1872 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType TU…
1875 …@Deprecated public final class RouteTracker implements java.lang.Cloneable org.apache.http.conn.ro…
1876 ctor @Deprecated public RouteTracker(org.apache.http.HttpHost, java.net.InetAddress);
1877 ctor @Deprecated public RouteTracker(org.apache.http.conn.routing.HttpRoute);
1878 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1879 method @Deprecated public void connectProxy(org.apache.http.HttpHost, boolean);
1880 method @Deprecated public void connectTarget(boolean);
1881 method @Deprecated public int getHopCount();
1882 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1883 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1884 method @Deprecated public java.net.InetAddress getLocalAddress();
1885 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1886 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1887 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1888 method @Deprecated public boolean isConnected();
1889 method @Deprecated public boolean isLayered();
1890 method @Deprecated public boolean isSecure();
1891 method @Deprecated public boolean isTunnelled();
1892 method @Deprecated public void layerProtocol(boolean);
1893 method @Deprecated public org.apache.http.conn.routing.HttpRoute toRoute();
1894 method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean);
1895 method @Deprecated public void tunnelTarget(boolean);
1902 …@Deprecated public final class PlainSocketFactory implements org.apache.http.conn.scheme.SocketFac…
1903 ctor @Deprecated public PlainSocketFactory(org.apache.http.conn.scheme.HostNameResolver);
1904 ctor @Deprecated public PlainSocketFactory();
1905 …method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.Ine…
1906 method @Deprecated public java.net.Socket createSocket();
1907 …method @Deprecated public static org.apache.http.conn.scheme.PlainSocketFactory getSocketFactory();
1908 …method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentExcept…
1911 @Deprecated public final class Scheme {
1912 ctor @Deprecated public Scheme(String, org.apache.http.conn.scheme.SocketFactory, int);
1913 method @Deprecated public int getDefaultPort();
1914 method @Deprecated public String getName();
1915 method @Deprecated public org.apache.http.conn.scheme.SocketFactory getSocketFactory();
1916 method @Deprecated public boolean isLayered();
1917 method @Deprecated public int resolvePort(int);
1920 @Deprecated public final class SchemeRegistry {
1921 ctor @Deprecated public SchemeRegistry();
1922 method @Deprecated public org.apache.http.conn.scheme.Scheme get(String);
1923 method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(String);
1924 … method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(org.apache.http.HttpHost);
1925 method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1926 …method @Deprecated public org.apache.http.conn.scheme.Scheme register(org.apache.http.conn.scheme.…
1927 …method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.conn.scheme…
1928 method @Deprecated public org.apache.http.conn.scheme.Scheme unregister(String);
1935 @Deprecated public class InetAddressUtils {
1936 method @Deprecated public static boolean isIPv4Address(String);
1937 method @Deprecated public static boolean isIPv6Address(String);
1938 method @Deprecated public static boolean isIPv6HexCompressedAddress(String);
1939 method @Deprecated public static boolean isIPv6StdAddress(String);
1946 @Deprecated public interface ClientCookie extends org.apache.http.cookie.Cookie {
1947 method @Deprecated public boolean containsAttribute(String);
1948 method @Deprecated public String getAttribute(String);
1949 field @Deprecated public static final String COMMENTURL_ATTR = "commenturl";
1950 field @Deprecated public static final String COMMENT_ATTR = "comment";
1951 field @Deprecated public static final String DISCARD_ATTR = "discard";
1952 field @Deprecated public static final String DOMAIN_ATTR = "domain";
1953 field @Deprecated public static final String EXPIRES_ATTR = "expires";
1954 field @Deprecated public static final String MAX_AGE_ATTR = "max-age";
1955 field @Deprecated public static final String PATH_ATTR = "path";
1956 field @Deprecated public static final String PORT_ATTR = "port";
1957 field @Deprecated public static final String SECURE_ATTR = "secure";
1958 field @Deprecated public static final String VERSION_ATTR = "version";
1961 @Deprecated public interface Cookie {
1962 method @Deprecated public String getComment();
1963 method @Deprecated public String getCommentURL();
1964 method @Deprecated public String getDomain();
1965 method @Deprecated public java.util.Date getExpiryDate();
1966 method @Deprecated public String getName();
1967 method @Deprecated public String getPath();
1968 method @Deprecated public int[] getPorts();
1969 method @Deprecated public String getValue();
1970 method @Deprecated public int getVersion();
1971 method @Deprecated public boolean isExpired(java.util.Date);
1972 method @Deprecated public boolean isPersistent();
1973 method @Deprecated public boolean isSecure();
1976 @Deprecated public interface CookieAttributeHandler {
1977 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
1978 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
1979 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
1982 …@Deprecated public class CookieIdentityComparator implements java.util.Comparator<org.apache.http.…
1983 ctor @Deprecated public CookieIdentityComparator();
1984 …method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie…
1987 @Deprecated public final class CookieOrigin {
1988 ctor @Deprecated public CookieOrigin(String, int, String, boolean);
1989 method @Deprecated public String getHost();
1990 method @Deprecated public String getPath();
1991 method @Deprecated public int getPort();
1992 method @Deprecated public boolean isSecure();
1995 …@Deprecated public class CookiePathComparator implements java.util.Comparator<org.apache.http.cook…
1996 ctor @Deprecated public CookiePathComparator();
1997 …method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie…
2000 @Deprecated public interface CookieSpec {
2001 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
2002 method @Deprecated public int getVersion();
2003 method @Deprecated public org.apache.http.Header getVersionHeader();
2004 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
2005 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
2006 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
2009 @Deprecated public interface CookieSpecFactory {
2010 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
2013 @Deprecated public final class CookieSpecRegistry {
2014 ctor @Deprecated public CookieSpecRegistry();
2015 …method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String, org.apache.http.…
2016 …method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String) throws java.lang…
2017 method @Deprecated public java.util.List<java.lang.String> getSpecNames();
2018 method @Deprecated public void register(String, org.apache.http.cookie.CookieSpecFactory);
2019 …method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.cookie.Cook…
2020 method @Deprecated public void unregister(String);
2023 @Deprecated public class MalformedCookieException extends org.apache.http.ProtocolException {
2024 ctor @Deprecated public MalformedCookieException();
2025 ctor @Deprecated public MalformedCookieException(String);
2026 ctor @Deprecated public MalformedCookieException(String, Throwable);
2029 @Deprecated public interface SM {
2030 field @Deprecated public static final String COOKIE = "Cookie";
2031 field @Deprecated public static final String COOKIE2 = "Cookie2";
2032 field @Deprecated public static final String SET_COOKIE = "Set-Cookie";
2033 field @Deprecated public static final String SET_COOKIE2 = "Set-Cookie2";
2036 @Deprecated public interface SetCookie extends org.apache.http.cookie.Cookie {
2037 method @Deprecated public void setComment(String);
2038 method @Deprecated public void setDomain(String);
2039 method @Deprecated public void setExpiryDate(java.util.Date);
2040 method @Deprecated public void setPath(String);
2041 method @Deprecated public void setSecure(boolean);
2042 method @Deprecated public void setValue(String);
2043 method @Deprecated public void setVersion(int);
2046 @Deprecated public interface SetCookie2 extends org.apache.http.cookie.SetCookie {
2047 method @Deprecated public void setCommentURL(String);
2048 method @Deprecated public void setDiscard(boolean);
2049 method @Deprecated public void setPorts(int[]);
2056 @Deprecated public interface CookieSpecPNames {
2057 … field @Deprecated public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
2058 …field @Deprecated public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-h…
2061 …@Deprecated public class CookieSpecParamBean extends org.apache.http.params.HttpAbstractParamBean {
2062 ctor @Deprecated public CookieSpecParamBean(org.apache.http.params.HttpParams);
2063 method @Deprecated public void setDatePatterns(java.util.Collection<java.lang.String>);
2064 method @Deprecated public void setSingleHeader(boolean);
2071 @Deprecated public abstract class AbstractHttpEntity implements org.apache.http.HttpEntity {
2072 ctor @Deprecated protected AbstractHttpEntity();
2073 …method @Deprecated public void consumeContent() throws java.io.IOException, java.lang.UnsupportedO…
2074 method @Deprecated public org.apache.http.Header getContentEncoding();
2075 method @Deprecated public org.apache.http.Header getContentType();
2076 method @Deprecated public boolean isChunked();
2077 method @Deprecated public void setChunked(boolean);
2078 method @Deprecated public void setContentEncoding(org.apache.http.Header);
2079 method @Deprecated public void setContentEncoding(String);
2080 method @Deprecated public void setContentType(org.apache.http.Header);
2081 method @Deprecated public void setContentType(String);
2082 field @Deprecated protected boolean chunked;
2083 field @Deprecated protected org.apache.http.Header contentEncoding;
2084 field @Deprecated protected org.apache.http.Header contentType;
2087 @Deprecated public class BasicHttpEntity extends org.apache.http.entity.AbstractHttpEntity {
2088 ctor @Deprecated public BasicHttpEntity();
2089 method @Deprecated public void consumeContent() throws java.io.IOException;
2090 … method @Deprecated public java.io.InputStream getContent() throws java.lang.IllegalStateException;
2091 method @Deprecated public long getContentLength();
2092 method @Deprecated public boolean isRepeatable();
2093 method @Deprecated public boolean isStreaming();
2094 method @Deprecated public void setContent(java.io.InputStream);
2095 method @Deprecated public void setContentLength(long);
2096 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2099 @Deprecated public class BufferedHttpEntity extends org.apache.http.entity.HttpEntityWrapper {
2100 … ctor @Deprecated public BufferedHttpEntity(org.apache.http.HttpEntity) throws java.io.IOException;
2103 …@Deprecated public class ByteArrayEntity extends org.apache.http.entity.AbstractHttpEntity impleme…
2104 ctor @Deprecated public ByteArrayEntity(byte[]);
2105 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2106 method @Deprecated public java.io.InputStream getContent();
2107 method @Deprecated public long getContentLength();
2108 method @Deprecated public boolean isRepeatable();
2109 method @Deprecated public boolean isStreaming();
2110 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2111 field @Deprecated protected final byte[] content;
2114 @Deprecated public interface ContentLengthStrategy {
2115 …method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http…
2116 field @Deprecated public static final int CHUNKED = -2; // 0xfffffffe
2117 field @Deprecated public static final int IDENTITY = -1; // 0xffffffff
2120 @Deprecated public interface ContentProducer {
2121 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2124 @Deprecated public class EntityTemplate extends org.apache.http.entity.AbstractHttpEntity {
2125 ctor @Deprecated public EntityTemplate(org.apache.http.entity.ContentProducer);
2126 method @Deprecated public void consumeContent() throws java.io.IOException;
2127 method @Deprecated public java.io.InputStream getContent();
2128 method @Deprecated public long getContentLength();
2129 method @Deprecated public boolean isRepeatable();
2130 method @Deprecated public boolean isStreaming();
2131 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2134 …@Deprecated public class FileEntity extends org.apache.http.entity.AbstractHttpEntity implements j…
2135 ctor @Deprecated public FileEntity(java.io.File, String);
2136 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2137 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2138 method @Deprecated public long getContentLength();
2139 method @Deprecated public boolean isRepeatable();
2140 method @Deprecated public boolean isStreaming();
2141 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2142 field @Deprecated protected final java.io.File file;
2145 @Deprecated public class HttpEntityWrapper implements org.apache.http.HttpEntity {
2146 ctor @Deprecated public HttpEntityWrapper(org.apache.http.HttpEntity);
2147 method @Deprecated public void consumeContent() throws java.io.IOException;
2148 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2149 method @Deprecated public org.apache.http.Header getContentEncoding();
2150 method @Deprecated public long getContentLength();
2151 method @Deprecated public org.apache.http.Header getContentType();
2152 method @Deprecated public boolean isChunked();
2153 method @Deprecated public boolean isRepeatable();
2154 method @Deprecated public boolean isStreaming();
2155 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2156 field @Deprecated protected org.apache.http.HttpEntity wrappedEntity;
2159 @Deprecated public class InputStreamEntity extends org.apache.http.entity.AbstractHttpEntity {
2160 ctor @Deprecated public InputStreamEntity(java.io.InputStream, long);
2161 method @Deprecated public void consumeContent() throws java.io.IOException;
2162 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2163 method @Deprecated public long getContentLength();
2164 method @Deprecated public boolean isRepeatable();
2165 method @Deprecated public boolean isStreaming();
2166 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2169 @Deprecated public class SerializableEntity extends org.apache.http.entity.AbstractHttpEntity {
2170 …ctor @Deprecated public SerializableEntity(java.io.Serializable, boolean) throws java.io.IOExcepti…
2171 …method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.I…
2172 method @Deprecated public long getContentLength();
2173 method @Deprecated public boolean isRepeatable();
2174 method @Deprecated public boolean isStreaming();
2175 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2178 …@Deprecated public class StringEntity extends org.apache.http.entity.AbstractHttpEntity implements…
2179 … ctor @Deprecated public StringEntity(String, String) throws java.io.UnsupportedEncodingException;
2180 ctor @Deprecated public StringEntity(String) throws java.io.UnsupportedEncodingException;
2181 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2182 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2183 method @Deprecated public long getContentLength();
2184 method @Deprecated public boolean isRepeatable();
2185 method @Deprecated public boolean isStreaming();
2186 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2187 field @Deprecated protected final byte[] content;
2194 …@Deprecated public abstract class AbstractHttpClientConnection implements org.apache.http.HttpClie…
2195 ctor @Deprecated public AbstractHttpClientConnection();
2196 method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2197 …method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializ…
2198 …method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2199 method @Deprecated protected org.apache.http.HttpResponseFactory createHttpResponseFactory();
2200 …method @Deprecated protected org.apache.http.io.HttpMessageWriter createRequestWriter(org.apache.h…
2201 …method @Deprecated protected org.apache.http.io.HttpMessageParser createResponseParser(org.apache.…
2202 method @Deprecated protected void doFlush() throws java.io.IOException;
2203 method @Deprecated public void flush() throws java.io.IOException;
2204 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2205 …method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.S…
2206 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2207 method @Deprecated public boolean isStale();
2208 …method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apac…
2209 …method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.h…
2210 …method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throw…
2211 …method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.ht…
2214 …@Deprecated public abstract class AbstractHttpServerConnection implements org.apache.http.HttpServ…
2215 ctor @Deprecated public AbstractHttpServerConnection();
2216 method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2217 …method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializ…
2218 …method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2219 method @Deprecated protected org.apache.http.HttpRequestFactory createHttpRequestFactory();
2220 …method @Deprecated protected org.apache.http.io.HttpMessageParser createRequestParser(org.apache.h…
2221 …method @Deprecated protected org.apache.http.io.HttpMessageWriter createResponseWriter(org.apache.…
2222 method @Deprecated protected void doFlush() throws java.io.IOException;
2223 method @Deprecated public void flush() throws java.io.IOException;
2224 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2225 …method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.S…
2226 method @Deprecated public boolean isStale();
2227 …method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) th…
2228 …method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.htt…
2229 …method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.…
2230 …method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.…
2233 …@Deprecated public class DefaultConnectionReuseStrategy implements org.apache.http.ConnectionReuse…
2234 ctor @Deprecated public DefaultConnectionReuseStrategy();
2235 …method @Deprecated protected org.apache.http.TokenIterator createTokenIterator(org.apache.http.Hea…
2236 …method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol…
2239 …@Deprecated public class DefaultHttpClientConnection extends org.apache.http.impl.SocketHttpClient…
2240 ctor @Deprecated public DefaultHttpClientConnection();
2241 …method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws jav…
2244 @Deprecated public class DefaultHttpRequestFactory implements org.apache.http.HttpRequestFactory {
2245 ctor @Deprecated public DefaultHttpRequestFactory();
2246 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) …
2247 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.ap…
2250 …@Deprecated public class DefaultHttpResponseFactory implements org.apache.http.HttpResponseFactory…
2251 ctor @Deprecated public DefaultHttpResponseFactory(org.apache.http.ReasonPhraseCatalog);
2252 ctor @Deprecated public DefaultHttpResponseFactory();
2253 …method @Deprecated protected java.util.Locale determineLocale(org.apache.http.protocol.HttpContext…
2254 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVer…
2255 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine,…
2256 field @Deprecated protected final org.apache.http.ReasonPhraseCatalog reasonCatalog;
2259 …@Deprecated public class DefaultHttpServerConnection extends org.apache.http.impl.SocketHttpServer…
2260 ctor @Deprecated public DefaultHttpServerConnection();
2261 …method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws jav…
2264 …@Deprecated public class EnglishReasonPhraseCatalog implements org.apache.http.ReasonPhraseCatalog…
2265 ctor @Deprecated protected EnglishReasonPhraseCatalog();
2266 method @Deprecated public String getReason(int, java.util.Locale);
2267 field @Deprecated public static final org.apache.http.impl.EnglishReasonPhraseCatalog INSTANCE;
2270 …@Deprecated public class HttpConnectionMetricsImpl implements org.apache.http.HttpConnectionMetric…
2271 …ctor @Deprecated public HttpConnectionMetricsImpl(org.apache.http.io.HttpTransportMetrics, org.apa…
2272 method @Deprecated public Object getMetric(String);
2273 method @Deprecated public long getReceivedBytesCount();
2274 method @Deprecated public long getRequestCount();
2275 method @Deprecated public long getResponseCount();
2276 method @Deprecated public long getSentBytesCount();
2277 method @Deprecated public void incrementRequestCount();
2278 method @Deprecated public void incrementResponseCount();
2279 method @Deprecated public void reset();
2280 method @Deprecated public void setMetric(String, Object);
2281 field @Deprecated public static final String RECEIVED_BYTES_COUNT = "http.received-bytes-count";
2282 field @Deprecated public static final String REQUEST_COUNT = "http.request-count";
2283 field @Deprecated public static final String RESPONSE_COUNT = "http.response-count";
2284 field @Deprecated public static final String SENT_BYTES_COUNT = "http.sent-bytes-count";
2287 …@Deprecated public class NoConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrat…
2288 ctor @Deprecated public NoConnectionReuseStrategy();
2289 …method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol…
2292 …@Deprecated public class SocketHttpClientConnection extends org.apache.http.impl.AbstractHttpClien…
2293 ctor @Deprecated public SocketHttpClientConnection();
2294 method @Deprecated protected void assertNotOpen();
2295 method @Deprecated protected void assertOpen();
2296 …method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws …
2297 method @Deprecated public void close() throws java.io.IOException;
2298 …method @Deprecated protected org.apache.http.io.SessionInputBuffer createSessionInputBuffer(java.n…
2299 …method @Deprecated protected org.apache.http.io.SessionOutputBuffer createSessionOutputBuffer(java…
2300 method @Deprecated public java.net.InetAddress getLocalAddress();
2301 method @Deprecated public int getLocalPort();
2302 method @Deprecated public java.net.InetAddress getRemoteAddress();
2303 method @Deprecated public int getRemotePort();
2304 method @Deprecated protected java.net.Socket getSocket();
2305 method @Deprecated public int getSocketTimeout();
2306 method @Deprecated public boolean isOpen();
2307 method @Deprecated public void setSocketTimeout(int);
2308 method @Deprecated public void shutdown() throws java.io.IOException;
2311 …@Deprecated public class SocketHttpServerConnection extends org.apache.http.impl.AbstractHttpServe…
2312 ctor @Deprecated public SocketHttpServerConnection();
2313 method @Deprecated protected void assertNotOpen();
2314 method @Deprecated protected void assertOpen();
2315 …method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws …
2316 method @Deprecated public void close() throws java.io.IOException;
2317 …method @Deprecated protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net…
2318 …method @Deprecated protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java…
2319 method @Deprecated public java.net.InetAddress getLocalAddress();
2320 method @Deprecated public int getLocalPort();
2321 method @Deprecated public java.net.InetAddress getRemoteAddress();
2322 method @Deprecated public int getRemotePort();
2323 method @Deprecated protected java.net.Socket getSocket();
2324 method @Deprecated public int getSocketTimeout();
2325 method @Deprecated public boolean isOpen();
2326 method @Deprecated public void setSocketTimeout(int);
2327 method @Deprecated public void shutdown() throws java.io.IOException;
2334 @Deprecated public abstract class AuthSchemeBase implements org.apache.http.auth.AuthScheme {
2335 ctor @Deprecated public AuthSchemeBase();
2336 method @Deprecated public boolean isProxy();
2337 …method @Deprecated protected abstract void parseChallenge(org.apache.http.util.CharArrayBuffer, in…
2338 …method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.aut…
2341 @Deprecated public class BasicScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2342 ctor @Deprecated public BasicScheme();
2343 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
2344 …method @Deprecated public static org.apache.http.Header authenticate(org.apache.http.auth.Credenti…
2345 method @Deprecated public String getSchemeName();
2346 method @Deprecated public boolean isComplete();
2347 method @Deprecated public boolean isConnectionBased();
2350 @Deprecated public class BasicSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2351 ctor @Deprecated public BasicSchemeFactory();
2352 …method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpP…
2355 @Deprecated public class DigestScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2356 ctor @Deprecated public DigestScheme();
2357 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
2358 method @Deprecated public static String createCnonce();
2359 method @Deprecated public String getSchemeName();
2360 method @Deprecated public boolean isComplete();
2361 method @Deprecated public boolean isConnectionBased();
2362 method @Deprecated public void overrideParamter(String, String);
2365 @Deprecated public class DigestSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2366 ctor @Deprecated public DigestSchemeFactory();
2367 …method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpP…
2370 @Deprecated public interface NTLMEngine {
2371 …method @Deprecated public String generateType1Msg(String, String) throws org.apache.http.impl.auth…
2372 …method @Deprecated public String generateType3Msg(String, String, String, String, String) throws o…
2375 …@Deprecated public class NTLMEngineException extends org.apache.http.auth.AuthenticationException {
2376 ctor @Deprecated public NTLMEngineException();
2377 ctor @Deprecated public NTLMEngineException(String);
2378 ctor @Deprecated public NTLMEngineException(String, Throwable);
2381 @Deprecated public class NTLMScheme extends org.apache.http.impl.auth.AuthSchemeBase {
2382 ctor @Deprecated public NTLMScheme(org.apache.http.impl.auth.NTLMEngine);
2383 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
2384 method @Deprecated public String getParameter(String);
2385 method @Deprecated public String getRealm();
2386 method @Deprecated public String getSchemeName();
2387 method @Deprecated public boolean isComplete();
2388 method @Deprecated public boolean isConnectionBased();
2389 …method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) t…
2392 @Deprecated public abstract class RFC2617Scheme extends org.apache.http.impl.auth.AuthSchemeBase {
2393 ctor @Deprecated public RFC2617Scheme();
2394 method @Deprecated public String getParameter(String);
2395 method @Deprecated protected java.util.Map<java.lang.String,java.lang.String> getParameters();
2396 method @Deprecated public String getRealm();
2397 …method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) t…
2400 @Deprecated public class UnsupportedDigestAlgorithmException extends java.lang.RuntimeException {
2401 ctor @Deprecated public UnsupportedDigestAlgorithmException();
2402 ctor @Deprecated public UnsupportedDigestAlgorithmException(String);
2403 ctor @Deprecated public UnsupportedDigestAlgorithmException(String, Throwable);
2410 …@Deprecated public abstract class AbstractAuthenticationHandler implements org.apache.http.client.…
2411 ctor @Deprecated public AbstractAuthenticationHandler();
2412 method @Deprecated protected java.util.List<java.lang.String> getAuthPreferences();
2413 …method @Deprecated protected java.util.Map<java.lang.String,org.apache.http.Header> parseChallenge…
2414 …method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.Str…
2417 …@Deprecated public abstract class AbstractHttpClient implements org.apache.http.client.HttpClient {
2418 …ctor @Deprecated protected AbstractHttpClient(org.apache.http.conn.ClientConnectionManager, org.ap…
2419 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
2420 … method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
2421 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
2422 …method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int…
2423 method @Deprecated public void clearRequestInterceptors();
2424 method @Deprecated public void clearResponseInterceptors();
2425 …method @Deprecated protected abstract org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegi…
2426 …method @Deprecated protected abstract org.apache.http.conn.ClientConnectionManager createClientCon…
2427 …method @Deprecated protected org.apache.http.client.RequestDirector createClientRequestDirector(or…
2428 …method @Deprecated protected abstract org.apache.http.conn.ConnectionKeepAliveStrategy createConne…
2429 …method @Deprecated protected abstract org.apache.http.ConnectionReuseStrategy createConnectionReus…
2430 …method @Deprecated protected abstract org.apache.http.cookie.CookieSpecRegistry createCookieSpecRe…
2431 method @Deprecated protected abstract org.apache.http.client.CookieStore createCookieStore();
2432 …method @Deprecated protected abstract org.apache.http.client.CredentialsProvider createCredentials…
2433 method @Deprecated protected abstract org.apache.http.protocol.HttpContext createHttpContext();
2434 method @Deprecated protected abstract org.apache.http.params.HttpParams createHttpParams();
2435 …method @Deprecated protected abstract org.apache.http.protocol.BasicHttpProcessor createHttpProces…
2436 …method @Deprecated protected abstract org.apache.http.client.HttpRequestRetryHandler createHttpReq…
2437 …method @Deprecated protected abstract org.apache.http.conn.routing.HttpRoutePlanner createHttpRout…
2438 …method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createProxyAuth…
2439 …method @Deprecated protected abstract org.apache.http.client.RedirectHandler createRedirectHandler…
2440 …method @Deprecated protected abstract org.apache.http.protocol.HttpRequestExecutor createRequestEx…
2441 …method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createTargetAut…
2442 …method @Deprecated protected abstract org.apache.http.client.UserTokenHandler createUserTokenHandl…
2443 …method @Deprecated protected org.apache.http.params.HttpParams determineParams(org.apache.http.Htt…
2444 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.method…
2445 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.method…
2446 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org…
2447 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org…
2448 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
2449 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
2450 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
2451 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
2452 method @Deprecated public final org.apache.http.auth.AuthSchemeRegistry getAuthSchemes();
2453 …method @Deprecated public final org.apache.http.conn.ConnectionKeepAliveStrategy getConnectionKeep…
2454 …method @Deprecated public final org.apache.http.conn.ClientConnectionManager getConnectionManager(…
2455 …method @Deprecated public final org.apache.http.ConnectionReuseStrategy getConnectionReuseStrategy…
2456 method @Deprecated public final org.apache.http.cookie.CookieSpecRegistry getCookieSpecs();
2457 method @Deprecated public final org.apache.http.client.CookieStore getCookieStore();
2458 …method @Deprecated public final org.apache.http.client.CredentialsProvider getCredentialsProvider(…
2459 … method @Deprecated protected final org.apache.http.protocol.BasicHttpProcessor getHttpProcessor();
2460 …method @Deprecated public final org.apache.http.client.HttpRequestRetryHandler getHttpRequestRetry…
2461 method @Deprecated public final org.apache.http.params.HttpParams getParams();
2462 …method @Deprecated public final org.apache.http.client.AuthenticationHandler getProxyAuthenticatio…
2463 method @Deprecated public final org.apache.http.client.RedirectHandler getRedirectHandler();
2464 … method @Deprecated public final org.apache.http.protocol.HttpRequestExecutor getRequestExecutor();
2465 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
2466 method @Deprecated public int getRequestInterceptorCount();
2467 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
2468 method @Deprecated public int getResponseInterceptorCount();
2469 method @Deprecated public final org.apache.http.conn.routing.HttpRoutePlanner getRoutePlanner();
2470 …method @Deprecated public final org.apache.http.client.AuthenticationHandler getTargetAuthenticati…
2471 method @Deprecated public final org.apache.http.client.UserTokenHandler getUserTokenHandler();
2472 …method @Deprecated public void removeRequestInterceptorByClass(Class<? extends org.apache.http.Htt…
2473 …method @Deprecated public void removeResponseInterceptorByClass(Class<? extends org.apache.http.Ht…
2474 method @Deprecated public void setAuthSchemes(org.apache.http.auth.AuthSchemeRegistry);
2475 method @Deprecated public void setCookieSpecs(org.apache.http.cookie.CookieSpecRegistry);
2476 method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
2477 … method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
2478 …method @Deprecated public void setHttpRequestRetryHandler(org.apache.http.client.HttpRequestRetryH…
2479 …method @Deprecated public void setKeepAliveStrategy(org.apache.http.conn.ConnectionKeepAliveStrate…
2480 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
2481 …method @Deprecated public void setProxyAuthenticationHandler(org.apache.http.client.Authentication…
2482 method @Deprecated public void setRedirectHandler(org.apache.http.client.RedirectHandler);
2483 method @Deprecated public void setReuseStrategy(org.apache.http.ConnectionReuseStrategy);
2484 method @Deprecated public void setRoutePlanner(org.apache.http.conn.routing.HttpRoutePlanner);
2485 …method @Deprecated public void setTargetAuthenticationHandler(org.apache.http.client.Authenticatio…
2486 method @Deprecated public void setUserTokenHandler(org.apache.http.client.UserTokenHandler);
2489 @Deprecated public class BasicCookieStore implements org.apache.http.client.CookieStore {
2490 ctor @Deprecated public BasicCookieStore();
2491 method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
2492 method @Deprecated public void addCookies(org.apache.http.cookie.Cookie[]);
2493 method @Deprecated public void clear();
2494 method @Deprecated public boolean clearExpired(java.util.Date);
2495 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
2498 …@Deprecated public class BasicCredentialsProvider implements org.apache.http.client.CredentialsPro…
2499 ctor @Deprecated public BasicCredentialsProvider();
2500 method @Deprecated public void clear();
2501 …method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.Aut…
2502 …method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth…
2505 …@Deprecated public class BasicResponseHandler implements org.apache.http.client.ResponseHandler<ja…
2506 ctor @Deprecated public BasicResponseHandler();
2507 …method @Deprecated public String handleResponse(org.apache.http.HttpResponse) throws org.apache.ht…
2510 @Deprecated public class ClientParamsStack extends org.apache.http.params.AbstractHttpParams {
2511 …ctor @Deprecated public ClientParamsStack(org.apache.http.params.HttpParams, org.apache.http.param…
2512 ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack);
2513 …ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack, org.apach…
2514 method @Deprecated public org.apache.http.params.HttpParams copy();
2515 method @Deprecated public final org.apache.http.params.HttpParams getApplicationParams();
2516 method @Deprecated public final org.apache.http.params.HttpParams getClientParams();
2517 method @Deprecated public final org.apache.http.params.HttpParams getOverrideParams();
2518 method @Deprecated public Object getParameter(String);
2519 method @Deprecated public final org.apache.http.params.HttpParams getRequestParams();
2520 method @Deprecated public boolean removeParameter(String);
2521 …method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object) throws ja…
2522 field @Deprecated protected final org.apache.http.params.HttpParams applicationParams;
2523 field @Deprecated protected final org.apache.http.params.HttpParams clientParams;
2524 field @Deprecated protected final org.apache.http.params.HttpParams overrideParams;
2525 field @Deprecated protected final org.apache.http.params.HttpParams requestParams;
2528 …@Deprecated public class DefaultConnectionKeepAliveStrategy implements org.apache.http.conn.Connec…
2529 ctor @Deprecated public DefaultConnectionKeepAliveStrategy();
2530 …method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.…
2533 …@Deprecated public class DefaultHttpClient extends org.apache.http.impl.client.AbstractHttpClient {
2534 …ctor @Deprecated public DefaultHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache…
2535 ctor @Deprecated public DefaultHttpClient(org.apache.http.params.HttpParams);
2536 ctor @Deprecated public DefaultHttpClient();
2537 method @Deprecated protected org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
2538 …method @Deprecated protected org.apache.http.conn.ClientConnectionManager createClientConnectionMa…
2539 …method @Deprecated protected org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeep…
2540 …method @Deprecated protected org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy…
2541 … method @Deprecated protected org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
2542 method @Deprecated protected org.apache.http.client.CookieStore createCookieStore();
2543 …method @Deprecated protected org.apache.http.client.CredentialsProvider createCredentialsProvider(…
2544 method @Deprecated protected org.apache.http.protocol.HttpContext createHttpContext();
2545 method @Deprecated protected org.apache.http.params.HttpParams createHttpParams();
2546 method @Deprecated protected org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
2547 …method @Deprecated protected org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetry…
2548 …method @Deprecated protected org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner(…
2549 …method @Deprecated protected org.apache.http.client.AuthenticationHandler createProxyAuthenticatio…
2550 method @Deprecated protected org.apache.http.client.RedirectHandler createRedirectHandler();
2551 … method @Deprecated protected org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
2552 …method @Deprecated protected org.apache.http.client.AuthenticationHandler createTargetAuthenticati…
2553 method @Deprecated protected org.apache.http.client.UserTokenHandler createUserTokenHandler();
2556 …@Deprecated public class DefaultHttpRequestRetryHandler implements org.apache.http.client.HttpRequ…
2557 ctor @Deprecated public DefaultHttpRequestRetryHandler(int, boolean);
2558 ctor @Deprecated public DefaultHttpRequestRetryHandler();
2559 method @Deprecated public int getRetryCount();
2560 method @Deprecated public boolean isRequestSentRetryEnabled();
2561 …method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.…
2564 …@Deprecated public class DefaultProxyAuthenticationHandler extends org.apache.http.impl.client.Abs…
2565 ctor @Deprecated public DefaultProxyAuthenticationHandler();
2566 …method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org…
2567 …method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apac…
2570 …@Deprecated public class DefaultRedirectHandler implements org.apache.http.client.RedirectHandler {
2571 ctor @Deprecated public DefaultRedirectHandler();
2572 …method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.htt…
2573 …method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.htt…
2576 …@Deprecated public class DefaultRequestDirector implements org.apache.http.client.RequestDirector {
2577 …ctor @Deprecated public DefaultRequestDirector(org.apache.http.protocol.HttpRequestExecutor, org.a…
2578 …method @Deprecated protected org.apache.http.HttpRequest createConnectRequest(org.apache.http.conn…
2579 …method @Deprecated protected boolean createTunnelToProxy(org.apache.http.conn.routing.HttpRoute, i…
2580 …method @Deprecated protected boolean createTunnelToTarget(org.apache.http.conn.routing.HttpRoute, …
2581 …method @Deprecated protected org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http…
2582 …method @Deprecated protected void establishRoute(org.apache.http.conn.routing.HttpRoute, org.apach…
2583 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
2584 …method @Deprecated protected org.apache.http.impl.client.RoutedRequest handleResponse(org.apache.h…
2585 method @Deprecated protected void releaseConnection();
2586 …method @Deprecated protected void rewriteRequestURI(org.apache.http.impl.client.RequestWrapper, or…
2587 field @Deprecated protected final org.apache.http.conn.ClientConnectionManager connManager;
2588 field @Deprecated protected final org.apache.http.protocol.HttpProcessor httpProcessor;
2589 …field @Deprecated protected final org.apache.http.conn.ConnectionKeepAliveStrategy keepAliveStrate…
2590 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
2591 field @Deprecated protected final org.apache.http.params.HttpParams params;
2592 field @Deprecated protected final org.apache.http.client.RedirectHandler redirectHandler;
2593 field @Deprecated protected final org.apache.http.protocol.HttpRequestExecutor requestExec;
2594 field @Deprecated protected final org.apache.http.client.HttpRequestRetryHandler retryHandler;
2595 field @Deprecated protected final org.apache.http.ConnectionReuseStrategy reuseStrategy;
2596 field @Deprecated protected final org.apache.http.conn.routing.HttpRoutePlanner routePlanner;
2599 …@Deprecated public class DefaultTargetAuthenticationHandler extends org.apache.http.impl.client.Ab…
2600 ctor @Deprecated public DefaultTargetAuthenticationHandler();
2601 …method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org…
2602 …method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apac…
2605 …@Deprecated public class DefaultUserTokenHandler implements org.apache.http.client.UserTokenHandle…
2606 ctor @Deprecated public DefaultUserTokenHandler();
2607 method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
2610 …@Deprecated public class EntityEnclosingRequestWrapper extends org.apache.http.impl.client.Request…
2611 …ctor @Deprecated public EntityEnclosingRequestWrapper(org.apache.http.HttpEntityEnclosingRequest) …
2612 method @Deprecated public boolean expectContinue();
2613 method @Deprecated public org.apache.http.HttpEntity getEntity();
2614 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
2617 @Deprecated public class RedirectLocations {
2618 ctor @Deprecated public RedirectLocations();
2619 method @Deprecated public void add(java.net.URI);
2620 method @Deprecated public boolean contains(java.net.URI);
2621 method @Deprecated public boolean remove(java.net.URI);
2624 …@Deprecated public class RequestWrapper extends org.apache.http.message.AbstractHttpMessage implem…
2625 …ctor @Deprecated public RequestWrapper(org.apache.http.HttpRequest) throws org.apache.http.Protoco…
2626 method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
2627 method @Deprecated public int getExecCount();
2628 method @Deprecated public String getMethod();
2629 method @Deprecated public org.apache.http.HttpRequest getOriginal();
2630 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
2631 method @Deprecated public org.apache.http.RequestLine getRequestLine();
2632 method @Deprecated public java.net.URI getURI();
2633 method @Deprecated public void incrementExecCount();
2634 method @Deprecated public boolean isAborted();
2635 method @Deprecated public boolean isRepeatable();
2636 method @Deprecated public void resetHeaders();
2637 method @Deprecated public void setMethod(String);
2638 method @Deprecated public void setProtocolVersion(org.apache.http.ProtocolVersion);
2639 method @Deprecated public void setURI(java.net.URI);
2642 @Deprecated public class RoutedRequest {
2643 …ctor @Deprecated public RoutedRequest(org.apache.http.impl.client.RequestWrapper, org.apache.http.…
2644 method @Deprecated public final org.apache.http.impl.client.RequestWrapper getRequest();
2645 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2646 field @Deprecated protected final org.apache.http.impl.client.RequestWrapper request;
2647 field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2650 @Deprecated public class TunnelRefusedException extends org.apache.http.HttpException {
2651 ctor @Deprecated public TunnelRefusedException(String, org.apache.http.HttpResponse);
2652 method @Deprecated public org.apache.http.HttpResponse getResponse();
2659 …@Deprecated public abstract class AbstractClientConnAdapter implements org.apache.http.conn.Manage…
2660 …ctor @Deprecated protected AbstractClientConnAdapter(org.apache.http.conn.ClientConnectionManager,…
2661 method @Deprecated public void abortConnection();
2662 … method @Deprecated protected final void assertNotAborted() throws java.io.InterruptedIOException;
2663 …method @Deprecated protected final void assertValid(org.apache.http.conn.OperatedClientConnection);
2664 method @Deprecated protected void detach();
2665 method @Deprecated public void flush() throws java.io.IOException;
2666 method @Deprecated public java.net.InetAddress getLocalAddress();
2667 method @Deprecated public int getLocalPort();
2668 method @Deprecated protected org.apache.http.conn.ClientConnectionManager getManager();
2669 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2670 method @Deprecated public java.net.InetAddress getRemoteAddress();
2671 method @Deprecated public int getRemotePort();
2672 method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
2673 method @Deprecated public int getSocketTimeout();
2674 … method @Deprecated protected org.apache.http.conn.OperatedClientConnection getWrappedConnection();
2675 method @Deprecated public boolean isMarkedReusable();
2676 method @Deprecated public boolean isOpen();
2677 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2678 method @Deprecated public boolean isSecure();
2679 method @Deprecated public boolean isStale();
2680 method @Deprecated public void markReusable();
2681 …method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apac…
2682 …method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.h…
2683 method @Deprecated public void releaseConnection();
2684 …method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throw…
2685 …method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.ht…
2686 method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
2687 method @Deprecated public void setSocketTimeout(int);
2688 method @Deprecated public void unmarkReusable();
2691 @Deprecated public abstract class AbstractPoolEntry {
2692 …ctor @Deprecated protected AbstractPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.ap…
2693 method @Deprecated public Object getState();
2694 …method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http…
2695 …method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protoc…
2696 method @Deprecated public void setState(Object);
2697 method @Deprecated protected void shutdownEntry();
2698 …method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.para…
2699 …method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws jav…
2700 field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator connOperator;
2701 field @Deprecated protected final org.apache.http.conn.OperatedClientConnection connection;
2702 field @Deprecated protected volatile org.apache.http.conn.routing.HttpRoute route;
2703 field @Deprecated protected volatile Object state;
2704 field @Deprecated protected volatile org.apache.http.conn.routing.RouteTracker tracker;
2707 …@Deprecated public abstract class AbstractPooledConnAdapter extends org.apache.http.impl.conn.Abst…
2708 …ctor @Deprecated protected AbstractPooledConnAdapter(org.apache.http.conn.ClientConnectionManager,…
2709 method @Deprecated protected final void assertAttached();
2710 method @Deprecated public void close() throws java.io.IOException;
2711 method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
2712 method @Deprecated public Object getState();
2713 …method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http…
2714 …method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protoc…
2715 method @Deprecated public void setState(Object);
2716 method @Deprecated public void shutdown() throws java.io.IOException;
2717 …method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.para…
2718 …method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws jav…
2719 field @Deprecated protected volatile org.apache.http.impl.conn.AbstractPoolEntry poolEntry;
2722 …@Deprecated public class DefaultClientConnection extends org.apache.http.impl.SocketHttpClientConn…
2723 ctor @Deprecated public DefaultClientConnection();
2724 method @Deprecated public final java.net.Socket getSocket();
2725 method @Deprecated public final org.apache.http.HttpHost getTargetHost();
2726 method @Deprecated public final boolean isSecure();
2727 …method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws ja…
2728 …method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.I…
2729 …method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apac…
2732 …@Deprecated public class DefaultClientConnectionOperator implements org.apache.http.conn.ClientCon…
2733 …ctor @Deprecated public DefaultClientConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry…
2734 method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
2735 …method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.a…
2736 …method @Deprecated protected void prepareSocket(java.net.Socket, org.apache.http.protocol.HttpCont…
2737 …method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnectio…
2738 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2741 …@Deprecated public class DefaultHttpRoutePlanner implements org.apache.http.conn.routing.HttpRoute…
2742 ctor @Deprecated public DefaultHttpRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry);
2743 …method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.Ht…
2744 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2747 …@Deprecated public class DefaultResponseParser extends org.apache.http.impl.io.AbstractMessagePars…
2748 …ctor @Deprecated public DefaultResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.ht…
2749 …method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInput…
2752 @Deprecated public class IdleConnectionHandler {
2753 ctor @Deprecated public IdleConnectionHandler();
2754 …method @Deprecated public void add(org.apache.http.HttpConnection, long, java.util.concurrent.Time…
2755 method @Deprecated public void closeExpiredConnections();
2756 method @Deprecated public void closeIdleConnections(long);
2757 method @Deprecated public boolean remove(org.apache.http.HttpConnection);
2758 method @Deprecated public void removeAll();
2761 …@Deprecated public class LoggingSessionInputBuffer implements org.apache.http.io.SessionInputBuffe…
2762 …ctor @Deprecated public LoggingSessionInputBuffer(org.apache.http.io.SessionInputBuffer, org.apach…
2763 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2764 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
2765 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
2766 method @Deprecated public int read() throws java.io.IOException;
2767 method @Deprecated public int read(byte[]) throws java.io.IOException;
2768 method @Deprecated public String readLine() throws java.io.IOException;
2769 …method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExce…
2772 …@Deprecated public class LoggingSessionOutputBuffer implements org.apache.http.io.SessionOutputBuf…
2773 …ctor @Deprecated public LoggingSessionOutputBuffer(org.apache.http.io.SessionOutputBuffer, org.apa…
2774 method @Deprecated public void flush() throws java.io.IOException;
2775 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2776 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
2777 method @Deprecated public void write(int) throws java.io.IOException;
2778 method @Deprecated public void write(byte[]) throws java.io.IOException;
2779 …method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOEx…
2780 method @Deprecated public void writeLine(String) throws java.io.IOException;
2783 …@Deprecated public class ProxySelectorRoutePlanner implements org.apache.http.conn.routing.HttpRou…
2784 …ctor @Deprecated public ProxySelectorRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry, java…
2785 …method @Deprecated protected java.net.Proxy chooseProxy(java.util.List<java.net.Proxy>, org.apache…
2786 …method @Deprecated protected org.apache.http.HttpHost determineProxy(org.apache.http.HttpHost, org…
2787 …method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.Ht…
2788 method @Deprecated protected String getHost(java.net.InetSocketAddress);
2789 method @Deprecated public java.net.ProxySelector getProxySelector();
2790 method @Deprecated public void setProxySelector(java.net.ProxySelector);
2791 field @Deprecated protected java.net.ProxySelector proxySelector;
2792 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2795 …@Deprecated public class SingleClientConnManager implements org.apache.http.conn.ClientConnectionM…
2796 …ctor @Deprecated public SingleClientConnManager(org.apache.http.params.HttpParams, org.apache.http…
2797 method @Deprecated protected final void assertStillUp() throws java.lang.IllegalStateException;
2798 method @Deprecated public void closeExpiredConnections();
2799 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2800 …method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperato…
2801 …method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(org.apache.ht…
2802 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2803 …method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, lon…
2804 …method @Deprecated public final org.apache.http.conn.ClientConnectionRequest requestConnection(org…
2805 method @Deprecated protected void revokeConnection();
2806 method @Deprecated public void shutdown();
2807 …field @Deprecated public static final String MISUSE_MESSAGE = "Invalid use of SingleClientConnMana…
2808 field @Deprecated protected boolean alwaysShutDown;
2809 field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2810 field @Deprecated protected long connectionExpiresTime;
2811 field @Deprecated protected volatile boolean isShutDown;
2812 field @Deprecated protected long lastReleaseTime;
2813 …field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.ConnAdapter managedC…
2814 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2815 …field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.PoolEntry uniquePool…
2818 …@Deprecated protected class SingleClientConnManager.ConnAdapter extends org.apache.http.impl.conn.…
2819 …ctor @Deprecated protected SingleClientConnManager.ConnAdapter(org.apache.http.impl.conn.SingleCli…
2822 …@Deprecated protected class SingleClientConnManager.PoolEntry extends org.apache.http.impl.conn.Ab…
2823 ctor @Deprecated protected SingleClientConnManager.PoolEntry();
2824 method @Deprecated protected void close() throws java.io.IOException;
2825 method @Deprecated protected void shutdown() throws java.io.IOException;
2828 @Deprecated public class Wire {
2829 ctor @Deprecated public Wire(org.apache.commons.logging.Log);
2830 method @Deprecated public boolean enabled();
2831 method @Deprecated public void input(java.io.InputStream) throws java.io.IOException;
2832 method @Deprecated public void input(byte[], int, int) throws java.io.IOException;
2833 method @Deprecated public void input(byte[]) throws java.io.IOException;
2834 method @Deprecated public void input(int) throws java.io.IOException;
2835 method @Deprecated public void input(String) throws java.io.IOException;
2836 method @Deprecated public void output(java.io.InputStream) throws java.io.IOException;
2837 method @Deprecated public void output(byte[], int, int) throws java.io.IOException;
2838 method @Deprecated public void output(byte[]) throws java.io.IOException;
2839 method @Deprecated public void output(int) throws java.io.IOException;
2840 method @Deprecated public void output(String) throws java.io.IOException;
2847 …@Deprecated public abstract class AbstractConnPool implements org.apache.http.impl.conn.tsccm.RefQ…
2848 ctor @Deprecated protected AbstractConnPool();
2849 … method @Deprecated protected void closeConnection(org.apache.http.conn.OperatedClientConnection);
2850 method @Deprecated public void closeExpiredConnections();
2851 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2852 method @Deprecated public abstract void deleteClosedConnections();
2853 method @Deprecated public void enableConnectionGC() throws java.lang.IllegalStateException;
2854 …method @Deprecated public abstract void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, …
2855 …method @Deprecated public final org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntry(org.apache…
2856 …method @Deprecated protected abstract void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2857 method @Deprecated public void handleReference(java.lang.ref.Reference);
2858 …method @Deprecated public abstract org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEnt…
2859 method @Deprecated public void shutdown();
2860 field @Deprecated protected org.apache.http.impl.conn.IdleConnectionHandler idleConnHandler;
2861 field @Deprecated protected volatile boolean isShutDown;
2862 …field @Deprecated protected java.util.Set<org.apache.http.impl.conn.tsccm.BasicPoolEntryRef> issue…
2863 field @Deprecated protected int numConnections;
2864 field @Deprecated protected final java.util.concurrent.locks.Lock poolLock;
2865 field @Deprecated protected java.lang.ref.ReferenceQueue<java.lang.Object> refQueue;
2868 @Deprecated public class BasicPoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
2869 …ctor @Deprecated public BasicPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.h…
2870 … method @Deprecated protected final org.apache.http.conn.OperatedClientConnection getConnection();
2871 method @Deprecated protected final org.apache.http.conn.routing.HttpRoute getPlannedRoute();
2872 … method @Deprecated protected final org.apache.http.impl.conn.tsccm.BasicPoolEntryRef getWeakRef();
2875 …@Deprecated public class BasicPoolEntryRef extends java.lang.ref.WeakReference<org.apache.http.imp…
2876 …ctor @Deprecated public BasicPoolEntryRef(org.apache.http.impl.conn.tsccm.BasicPoolEntry, java.lan…
2877 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2880 …@Deprecated public class BasicPooledConnAdapter extends org.apache.http.impl.conn.AbstractPooledCo…
2881 …ctor @Deprecated protected BasicPooledConnAdapter(org.apache.http.impl.conn.tsccm.ThreadSafeClient…
2882 method @Deprecated protected org.apache.http.impl.conn.AbstractPoolEntry getPoolEntry();
2885 …@Deprecated public class ConnPoolByRoute extends org.apache.http.impl.conn.tsccm.AbstractConnPool {
2886 …ctor @Deprecated public ConnPoolByRoute(org.apache.http.conn.ClientConnectionOperator, org.apache.…
2887 …method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry createEntry(org.apache…
2888 …method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> creat…
2889 …method @Deprecated protected java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.…
2890 …method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> create…
2891 method @Deprecated public void deleteClosedConnections();
2892 method @Deprecated protected void deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2893 method @Deprecated protected void deleteLeastUsedEntry();
2894 …method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, …
2895 method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2896 …method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntryBlocking(org.a…
2897 …method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getFreeEntry(org.apach…
2898 …method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool getRoutePool(org.ap…
2899 method @Deprecated protected void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2900 …method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool newRouteSpecificPoo…
2901 …method @Deprecated protected org.apache.http.impl.conn.tsccm.WaitingThread newWaitingThread(java.u…
2902 …method @Deprecated protected void notifyWaitingThread(org.apache.http.impl.conn.tsccm.RouteSpecifi…
2903 …method @Deprecated public org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.ap…
2904 …field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeCo…
2905 field @Deprecated protected final int maxTotalConnections;
2906 field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator operator;
2907 …field @Deprecated protected final java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.…
2908 …field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waiting…
2911 @Deprecated public interface PoolEntryRequest {
2912 method @Deprecated public void abortRequest();
2913 …method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry getPoolEntry(long, java.u…
2916 @Deprecated public interface RefQueueHandler {
2917 method @Deprecated public void handleReference(java.lang.ref.Reference<?>);
2920 @Deprecated public class RefQueueWorker implements java.lang.Runnable {
2921 …ctor @Deprecated public RefQueueWorker(java.lang.ref.ReferenceQueue<?>, org.apache.http.impl.conn.…
2922 method @Deprecated public void run();
2923 method @Deprecated public void shutdown();
2924 field @Deprecated protected final org.apache.http.impl.conn.tsccm.RefQueueHandler refHandler;
2925 field @Deprecated protected final java.lang.ref.ReferenceQueue<?> refQueue;
2926 field @Deprecated protected volatile Thread workerThread;
2929 @Deprecated public class RouteSpecificPool {
2930 ctor @Deprecated public RouteSpecificPool(org.apache.http.conn.routing.HttpRoute, int);
2931 method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry allocEntry(Object);
2932 method @Deprecated public void createdEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2933 method @Deprecated public boolean deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2934 method @Deprecated public void dropEntry();
2935 method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2936 method @Deprecated public int getCapacity();
2937 method @Deprecated public final int getEntryCount();
2938 method @Deprecated public final int getMaxEntries();
2939 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2940 method @Deprecated public boolean hasThread();
2941 method @Deprecated public boolean isUnused();
2942 method @Deprecated public org.apache.http.impl.conn.tsccm.WaitingThread nextThread();
2943 method @Deprecated public void queueThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2944 method @Deprecated public void removeThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2945 …field @Deprecated protected final java.util.LinkedList<org.apache.http.impl.conn.tsccm.BasicPoolEn…
2946 field @Deprecated protected final int maxEntries;
2947 field @Deprecated protected int numEntries;
2948 field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2949 …field @Deprecated protected final java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> w…
2952 …@Deprecated public class ThreadSafeClientConnManager implements org.apache.http.conn.ClientConnect…
2953 …ctor @Deprecated public ThreadSafeClientConnManager(org.apache.http.params.HttpParams, org.apache.…
2954 method @Deprecated public void closeExpiredConnections();
2955 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2956 …method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperato…
2957 …method @Deprecated protected org.apache.http.impl.conn.tsccm.AbstractConnPool createConnectionPool…
2958 method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2959 method @Deprecated public int getConnectionsInPool();
2960 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2961 …method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, lon…
2962 …method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apach…
2963 method @Deprecated public void shutdown();
2964 field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2965 … field @Deprecated protected final org.apache.http.impl.conn.tsccm.AbstractConnPool connectionPool;
2966 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2969 @Deprecated public class WaitingThread {
2970 …ctor @Deprecated public WaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.c…
2971 method @Deprecated public boolean await(java.util.Date) throws java.lang.InterruptedException;
2972 method @Deprecated public final java.util.concurrent.locks.Condition getCondition();
2973 method @Deprecated public final org.apache.http.impl.conn.tsccm.RouteSpecificPool getPool();
2974 method @Deprecated public final Thread getThread();
2975 method @Deprecated public void interrupt();
2976 method @Deprecated public void wakeup();
2979 @Deprecated public class WaitingThreadAborter {
2980 ctor @Deprecated public WaitingThreadAborter();
2981 method @Deprecated public void abort();
2982 method @Deprecated public void setWaitingThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2989 …@Deprecated public abstract class AbstractCookieAttributeHandler implements org.apache.http.cookie…
2990 ctor @Deprecated public AbstractCookieAttributeHandler();
2991 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
2992 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
2995 …@Deprecated public abstract class AbstractCookieSpec implements org.apache.http.cookie.CookieSpec {
2996 ctor @Deprecated public AbstractCookieSpec();
2997 …method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler findAttribHandler(Strin…
2998 …method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler getAttribHandler(String…
2999 …method @Deprecated protected java.util.Collection<org.apache.http.cookie.CookieAttributeHandler> g…
3000 …method @Deprecated public void registerAttribHandler(String, org.apache.http.cookie.CookieAttribut…
3003 …@Deprecated public class BasicClientCookie implements org.apache.http.cookie.ClientCookie java.lan…
3004 ctor @Deprecated public BasicClientCookie(String, String);
3005 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3006 method @Deprecated public boolean containsAttribute(String);
3007 method @Deprecated public String getAttribute(String);
3008 method @Deprecated public String getComment();
3009 method @Deprecated public String getCommentURL();
3010 method @Deprecated public String getDomain();
3011 method @Deprecated public java.util.Date getExpiryDate();
3012 method @Deprecated public String getName();
3013 method @Deprecated public String getPath();
3014 method @Deprecated public int[] getPorts();
3015 method @Deprecated public String getValue();
3016 method @Deprecated public int getVersion();
3017 method @Deprecated public boolean isExpired(java.util.Date);
3018 method @Deprecated public boolean isPersistent();
3019 method @Deprecated public boolean isSecure();
3020 method @Deprecated public void setAttribute(String, String);
3021 method @Deprecated public void setComment(String);
3022 method @Deprecated public void setDomain(String);
3023 method @Deprecated public void setExpiryDate(java.util.Date);
3024 method @Deprecated public void setPath(String);
3025 method @Deprecated public void setSecure(boolean);
3026 method @Deprecated public void setValue(String);
3027 method @Deprecated public void setVersion(int);
3030 …@Deprecated public class BasicClientCookie2 extends org.apache.http.impl.cookie.BasicClientCookie …
3031 ctor @Deprecated public BasicClientCookie2(String, String);
3032 method @Deprecated public void setCommentURL(String);
3033 method @Deprecated public void setDiscard(boolean);
3034 method @Deprecated public void setPorts(int[]);
3037 …@Deprecated public class BasicCommentHandler extends org.apache.http.impl.cookie.AbstractCookieAtt…
3038 ctor @Deprecated public BasicCommentHandler();
3039 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3042 …@Deprecated public class BasicDomainHandler implements org.apache.http.cookie.CookieAttributeHandl…
3043 ctor @Deprecated public BasicDomainHandler();
3044 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3045 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3046 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3049 …@Deprecated public class BasicExpiresHandler extends org.apache.http.impl.cookie.AbstractCookieAtt…
3050 ctor @Deprecated public BasicExpiresHandler(String[]);
3051 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3054 …@Deprecated public class BasicMaxAgeHandler extends org.apache.http.impl.cookie.AbstractCookieAttr…
3055 ctor @Deprecated public BasicMaxAgeHandler();
3056 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3059 …@Deprecated public class BasicPathHandler implements org.apache.http.cookie.CookieAttributeHandler…
3060 ctor @Deprecated public BasicPathHandler();
3061 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3062 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3063 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3066 …@Deprecated public class BasicSecureHandler extends org.apache.http.impl.cookie.AbstractCookieAttr…
3067 ctor @Deprecated public BasicSecureHandler();
3068 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3071 @Deprecated public class BestMatchSpec implements org.apache.http.cookie.CookieSpec {
3072 ctor @Deprecated public BestMatchSpec(String[], boolean);
3073 ctor @Deprecated public BestMatchSpec();
3074 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3075 method @Deprecated public int getVersion();
3076 method @Deprecated public org.apache.http.Header getVersionHeader();
3077 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3078 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3079 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3082 …@Deprecated public class BestMatchSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3083 ctor @Deprecated public BestMatchSpecFactory();
3084 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3087 @Deprecated public class BrowserCompatSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3088 ctor @Deprecated public BrowserCompatSpec(String[]);
3089 ctor @Deprecated public BrowserCompatSpec();
3090 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3091 method @Deprecated public int getVersion();
3092 method @Deprecated public org.apache.http.Header getVersionHeader();
3093 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3094 field @Deprecated protected static final String[] DATE_PATTERNS;
3097 …@Deprecated public class BrowserCompatSpecFactory implements org.apache.http.cookie.CookieSpecFact…
3098 ctor @Deprecated public BrowserCompatSpecFactory();
3099 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3102 …@Deprecated public abstract class CookieSpecBase extends org.apache.http.impl.cookie.AbstractCooki…
3103 ctor @Deprecated public CookieSpecBase();
3104 … method @Deprecated protected static String getDefaultDomain(org.apache.http.cookie.CookieOrigin);
3105 method @Deprecated protected static String getDefaultPath(org.apache.http.cookie.CookieOrigin);
3106 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3107 …method @Deprecated protected java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.H…
3108 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3111 @Deprecated public class DateParseException extends java.lang.Exception {
3112 ctor @Deprecated public DateParseException();
3113 ctor @Deprecated public DateParseException(String);
3116 @Deprecated public final class DateUtils {
3117 method @Deprecated public static String formatDate(java.util.Date);
3118 method @Deprecated public static String formatDate(java.util.Date, String);
3119 …method @Deprecated public static java.util.Date parseDate(String) throws org.apache.http.impl.cook…
3120 …method @Deprecated public static java.util.Date parseDate(String, String[]) throws org.apache.http…
3121 …method @Deprecated public static java.util.Date parseDate(String, String[], java.util.Date) throws…
3122 field @Deprecated public static final java.util.TimeZone GMT;
3123 field @Deprecated public static final String PATTERN_ASCTIME = "EEE MMM d HH:mm:ss yyyy";
3124 field @Deprecated public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
3125 field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
3128 …@Deprecated public class NetscapeDomainHandler extends org.apache.http.impl.cookie.BasicDomainHand…
3129 ctor @Deprecated public NetscapeDomainHandler();
3132 @Deprecated public class NetscapeDraftHeaderParser {
3133 ctor @Deprecated public NetscapeDraftHeaderParser();
3134 …method @Deprecated public org.apache.http.HeaderElement parseHeader(org.apache.http.util.CharArray…
3135 …field @Deprecated public static final org.apache.http.impl.cookie.NetscapeDraftHeaderParser DEFAUL…
3138 @Deprecated public class NetscapeDraftSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3139 ctor @Deprecated public NetscapeDraftSpec(String[]);
3140 ctor @Deprecated public NetscapeDraftSpec();
3141 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3142 method @Deprecated public int getVersion();
3143 method @Deprecated public org.apache.http.Header getVersionHeader();
3144 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3145 field @Deprecated protected static final String EXPIRES_PATTERN = "EEE, dd-MMM-yyyy HH:mm:ss z";
3148 …@Deprecated public class NetscapeDraftSpecFactory implements org.apache.http.cookie.CookieSpecFact…
3149 ctor @Deprecated public NetscapeDraftSpecFactory();
3150 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3153 …@Deprecated public class RFC2109DomainHandler implements org.apache.http.cookie.CookieAttributeHan…
3154 ctor @Deprecated public RFC2109DomainHandler();
3155 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3156 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3157 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3160 @Deprecated public class RFC2109Spec extends org.apache.http.impl.cookie.CookieSpecBase {
3161 ctor @Deprecated public RFC2109Spec(String[], boolean);
3162 ctor @Deprecated public RFC2109Spec();
3163 …method @Deprecated protected void formatCookieAsVer(org.apache.http.util.CharArrayBuffer, org.apac…
3164 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3165 …method @Deprecated protected void formatParamAsVer(org.apache.http.util.CharArrayBuffer, String, S…
3166 method @Deprecated public int getVersion();
3167 method @Deprecated public org.apache.http.Header getVersionHeader();
3168 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3171 @Deprecated public class RFC2109SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3172 ctor @Deprecated public RFC2109SpecFactory();
3173 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3176 …@Deprecated public class RFC2109VersionHandler extends org.apache.http.impl.cookie.AbstractCookieA…
3177 ctor @Deprecated public RFC2109VersionHandler();
3178 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3181 …@Deprecated public class RFC2965CommentUrlAttributeHandler implements org.apache.http.cookie.Cooki…
3182 ctor @Deprecated public RFC2965CommentUrlAttributeHandler();
3183 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3184 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3185 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3188 …@Deprecated public class RFC2965DiscardAttributeHandler implements org.apache.http.cookie.CookieAt…
3189 ctor @Deprecated public RFC2965DiscardAttributeHandler();
3190 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3191 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3192 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3195 …@Deprecated public class RFC2965DomainAttributeHandler implements org.apache.http.cookie.CookieAtt…
3196 ctor @Deprecated public RFC2965DomainAttributeHandler();
3197 method @Deprecated public boolean domainMatch(String, String);
3198 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3199 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3200 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3203 …@Deprecated public class RFC2965PortAttributeHandler implements org.apache.http.cookie.CookieAttri…
3204 ctor @Deprecated public RFC2965PortAttributeHandler();
3205 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3206 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3207 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3210 @Deprecated public class RFC2965Spec extends org.apache.http.impl.cookie.RFC2109Spec {
3211 ctor @Deprecated public RFC2965Spec();
3212 ctor @Deprecated public RFC2965Spec(String[], boolean);
3215 @Deprecated public class RFC2965SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3216 ctor @Deprecated public RFC2965SpecFactory();
3217 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3220 …@Deprecated public class RFC2965VersionAttributeHandler implements org.apache.http.cookie.CookieAt…
3221 ctor @Deprecated public RFC2965VersionAttributeHandler();
3222 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3223 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3224 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3231 @Deprecated public class EntityDeserializer {
3232 ctor @Deprecated public EntityDeserializer(org.apache.http.entity.ContentLengthStrategy);
3233 …method @Deprecated public org.apache.http.HttpEntity deserialize(org.apache.http.io.SessionInputBu…
3234 …method @Deprecated protected org.apache.http.entity.BasicHttpEntity doDeserialize(org.apache.http.…
3237 @Deprecated public class EntitySerializer {
3238 ctor @Deprecated public EntitySerializer(org.apache.http.entity.ContentLengthStrategy);
3239 …method @Deprecated protected java.io.OutputStream doSerialize(org.apache.http.io.SessionOutputBuff…
3240 …method @Deprecated public void serialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.H…
3243 …@Deprecated public class LaxContentLengthStrategy implements org.apache.http.entity.ContentLengthS…
3244 ctor @Deprecated public LaxContentLengthStrategy();
3245 …method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http…
3248 …@Deprecated public class StrictContentLengthStrategy implements org.apache.http.entity.ContentLeng…
3249 ctor @Deprecated public StrictContentLengthStrategy();
3250 …method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http…
3257 …@Deprecated public abstract class AbstractMessageParser implements org.apache.http.io.HttpMessageP…
3258 …ctor @Deprecated public AbstractMessageParser(org.apache.http.io.SessionInputBuffer, org.apache.ht…
3259 …method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException…
3260 …method @Deprecated protected abstract org.apache.http.HttpMessage parseHead(org.apache.http.io.Ses…
3261 …method @Deprecated public static org.apache.http.Header[] parseHeaders(org.apache.http.io.SessionI…
3262 field @Deprecated protected final org.apache.http.message.LineParser lineParser;
3265 …@Deprecated public abstract class AbstractMessageWriter implements org.apache.http.io.HttpMessageW…
3266 …ctor @Deprecated public AbstractMessageWriter(org.apache.http.io.SessionOutputBuffer, org.apache.h…
3267 …method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpExcep…
3268 …method @Deprecated protected abstract void writeHeadLine(org.apache.http.HttpMessage) throws java.…
3269 field @Deprecated protected final org.apache.http.util.CharArrayBuffer lineBuf;
3270 field @Deprecated protected final org.apache.http.message.LineFormatter lineFormatter;
3271 field @Deprecated protected final org.apache.http.io.SessionOutputBuffer sessionBuffer;
3274 …@Deprecated public abstract class AbstractSessionInputBuffer implements org.apache.http.io.Session…
3275 ctor @Deprecated public AbstractSessionInputBuffer();
3276 method @Deprecated protected int fillBuffer() throws java.io.IOException;
3277 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3278 method @Deprecated protected boolean hasBufferedData();
3279 …method @Deprecated protected void init(java.io.InputStream, int, org.apache.http.params.HttpParams…
3280 method @Deprecated public int read() throws java.io.IOException;
3281 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3282 method @Deprecated public int read(byte[]) throws java.io.IOException;
3283 …method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExce…
3284 method @Deprecated public String readLine() throws java.io.IOException;
3287 …@Deprecated public abstract class AbstractSessionOutputBuffer implements org.apache.http.io.Sessio…
3288 ctor @Deprecated public AbstractSessionOutputBuffer();
3289 method @Deprecated public void flush() throws java.io.IOException;
3290 method @Deprecated protected void flushBuffer() throws java.io.IOException;
3291 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3292 …method @Deprecated protected void init(java.io.OutputStream, int, org.apache.http.params.HttpParam…
3293 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3294 method @Deprecated public void write(byte[]) throws java.io.IOException;
3295 method @Deprecated public void write(int) throws java.io.IOException;
3296 method @Deprecated public void writeLine(String) throws java.io.IOException;
3297 …method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOEx…
3300 @Deprecated public class ChunkedInputStream extends java.io.InputStream {
3301 ctor @Deprecated public ChunkedInputStream(org.apache.http.io.SessionInputBuffer);
3302 method @Deprecated public org.apache.http.Header[] getFooters();
3303 method @Deprecated public int read() throws java.io.IOException;
3306 @Deprecated public class ChunkedOutputStream extends java.io.OutputStream {
3307 …ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer, int) throws ja…
3308 …ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer) throws java.io…
3309 method @Deprecated public void finish() throws java.io.IOException;
3310 method @Deprecated protected void flushCache() throws java.io.IOException;
3311 …method @Deprecated protected void flushCacheWithAppend(byte[], int, int) throws java.io.IOExceptio…
3312 method @Deprecated public void write(int) throws java.io.IOException;
3313 method @Deprecated protected void writeClosingChunk() throws java.io.IOException;
3316 @Deprecated public class ContentLengthInputStream extends java.io.InputStream {
3317 ctor @Deprecated public ContentLengthInputStream(org.apache.http.io.SessionInputBuffer, long);
3318 method @Deprecated public int read() throws java.io.IOException;
3321 @Deprecated public class ContentLengthOutputStream extends java.io.OutputStream {
3322 ctor @Deprecated public ContentLengthOutputStream(org.apache.http.io.SessionOutputBuffer, long);
3323 method @Deprecated public void write(int) throws java.io.IOException;
3326 @Deprecated public class HttpRequestParser extends org.apache.http.impl.io.AbstractMessageParser {
3327 …ctor @Deprecated public HttpRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.m…
3328 …method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInput…
3331 @Deprecated public class HttpRequestWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3332 …ctor @Deprecated public HttpRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.…
3333 …method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOExce…
3336 …@Deprecated public class HttpResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
3337 …ctor @Deprecated public HttpResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.…
3338 …method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInput…
3341 …@Deprecated public class HttpResponseWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3342 …ctor @Deprecated public HttpResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http…
3343 …method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOExce…
3346 …@Deprecated public class HttpTransportMetricsImpl implements org.apache.http.io.HttpTransportMetri…
3347 ctor @Deprecated public HttpTransportMetricsImpl();
3348 method @Deprecated public long getBytesTransferred();
3349 method @Deprecated public void incrementBytesTransferred(long);
3350 method @Deprecated public void reset();
3351 method @Deprecated public void setBytesTransferred(long);
3354 @Deprecated public class IdentityInputStream extends java.io.InputStream {
3355 ctor @Deprecated public IdentityInputStream(org.apache.http.io.SessionInputBuffer);
3356 method @Deprecated public int read() throws java.io.IOException;
3359 @Deprecated public class IdentityOutputStream extends java.io.OutputStream {
3360 ctor @Deprecated public IdentityOutputStream(org.apache.http.io.SessionOutputBuffer);
3361 method @Deprecated public void write(int) throws java.io.IOException;
3364 …@Deprecated public class SocketInputBuffer extends org.apache.http.impl.io.AbstractSessionInputBuf…
3365 …ctor @Deprecated public SocketInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams)…
3366 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3367 method @Deprecated public boolean isStale() throws java.io.IOException;
3370 …@Deprecated public class SocketOutputBuffer extends org.apache.http.impl.io.AbstractSessionOutputB…
3371 …ctor @Deprecated public SocketOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams…
3378 @Deprecated public interface HttpMessageParser {
3379 …method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException…
3382 @Deprecated public interface HttpMessageWriter {
3383 …method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpExcep…
3386 @Deprecated public interface HttpTransportMetrics {
3387 method @Deprecated public long getBytesTransferred();
3388 method @Deprecated public void reset();
3391 @Deprecated public interface SessionInputBuffer {
3392 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3393 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3394 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3395 method @Deprecated public int read(byte[]) throws java.io.IOException;
3396 method @Deprecated public int read() throws java.io.IOException;
3397 …method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExce…
3398 method @Deprecated public String readLine() throws java.io.IOException;
3401 @Deprecated public interface SessionOutputBuffer {
3402 method @Deprecated public void flush() throws java.io.IOException;
3403 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3404 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3405 method @Deprecated public void write(byte[]) throws java.io.IOException;
3406 method @Deprecated public void write(int) throws java.io.IOException;
3407 method @Deprecated public void writeLine(String) throws java.io.IOException;
3408 …method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOEx…
3415 @Deprecated public abstract class AbstractHttpMessage implements org.apache.http.HttpMessage {
3416 ctor @Deprecated protected AbstractHttpMessage(org.apache.http.params.HttpParams);
3417 ctor @Deprecated protected AbstractHttpMessage();
3418 method @Deprecated public void addHeader(org.apache.http.Header);
3419 method @Deprecated public void addHeader(String, String);
3420 method @Deprecated public boolean containsHeader(String);
3421 method @Deprecated public org.apache.http.Header[] getAllHeaders();
3422 method @Deprecated public org.apache.http.Header getFirstHeader(String);
3423 method @Deprecated public org.apache.http.Header[] getHeaders(String);
3424 method @Deprecated public org.apache.http.Header getLastHeader(String);
3425 method @Deprecated public org.apache.http.params.HttpParams getParams();
3426 method @Deprecated public org.apache.http.HeaderIterator headerIterator();
3427 method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
3428 method @Deprecated public void removeHeader(org.apache.http.Header);
3429 method @Deprecated public void removeHeaders(String);
3430 method @Deprecated public void setHeader(org.apache.http.Header);
3431 method @Deprecated public void setHeader(String, String);
3432 method @Deprecated public void setHeaders(org.apache.http.Header[]);
3433 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3434 field @Deprecated protected org.apache.http.message.HeaderGroup headergroup;
3435 field @Deprecated protected org.apache.http.params.HttpParams params;
3438 @Deprecated public class BasicHeader implements java.lang.Cloneable org.apache.http.Header {
3439 ctor @Deprecated public BasicHeader(String, String);
3440 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3441 …method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.Par…
3442 method @Deprecated public String getName();
3443 method @Deprecated public String getValue();
3446 …@Deprecated public class BasicHeaderElement implements java.lang.Cloneable org.apache.http.HeaderE…
3447 ctor @Deprecated public BasicHeaderElement(String, String, org.apache.http.NameValuePair[]);
3448 ctor @Deprecated public BasicHeaderElement(String, String);
3449 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3450 method @Deprecated public String getName();
3451 method @Deprecated public org.apache.http.NameValuePair getParameter(int);
3452 method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
3453 method @Deprecated public int getParameterCount();
3454 method @Deprecated public org.apache.http.NameValuePair[] getParameters();
3455 method @Deprecated public String getValue();
3458 …@Deprecated public class BasicHeaderElementIterator implements org.apache.http.HeaderElementIterat…
3459 …ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator, org.apache.http…
3460 ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator);
3461 method @Deprecated public boolean hasNext();
3462 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3463 …method @Deprecated public org.apache.http.HeaderElement nextElement() throws java.util.NoSuchEleme…
3464 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3467 @Deprecated public class BasicHeaderIterator implements org.apache.http.HeaderIterator {
3468 ctor @Deprecated public BasicHeaderIterator(org.apache.http.Header[], String);
3469 method @Deprecated protected boolean filterHeader(int);
3470 method @Deprecated protected int findNext(int);
3471 method @Deprecated public boolean hasNext();
3472 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3473 …method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementExcept…
3474 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3475 field @Deprecated protected final org.apache.http.Header[] allHeaders;
3476 field @Deprecated protected int currentIndex;
3477 field @Deprecated protected String headerName;
3480 …@Deprecated public class BasicHeaderValueFormatter implements org.apache.http.message.HeaderValueF…
3481 ctor @Deprecated public BasicHeaderValueFormatter();
3482 …method @Deprecated protected void doFormatValue(org.apache.http.util.CharArrayBuffer, String, bool…
3483 method @Deprecated protected int estimateElementsLen(org.apache.http.HeaderElement[]);
3484 method @Deprecated protected int estimateHeaderElementLen(org.apache.http.HeaderElement);
3485 method @Deprecated protected int estimateNameValuePairLen(org.apache.http.NameValuePair);
3486 method @Deprecated protected int estimateParametersLen(org.apache.http.NameValuePair[]);
3487 …method @Deprecated public static final String formatElements(org.apache.http.HeaderElement[], bool…
3488 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util…
3489 …method @Deprecated public static final String formatHeaderElement(org.apache.http.HeaderElement, b…
3490 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http…
3491 …method @Deprecated public static final String formatNameValuePair(org.apache.http.NameValuePair, b…
3492 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http…
3493 …method @Deprecated public static final String formatParameters(org.apache.http.NameValuePair[], bo…
3494 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.ut…
3495 method @Deprecated protected boolean isSeparator(char);
3496 method @Deprecated protected boolean isUnsafe(char);
3497 field @Deprecated public static final org.apache.http.message.BasicHeaderValueFormatter DEFAULT;
3498 field @Deprecated public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
3499 field @Deprecated public static final String UNSAFE_CHARS = "\"\\";
3502 …@Deprecated public class BasicHeaderValueParser implements org.apache.http.message.HeaderValuePars…
3503 ctor @Deprecated public BasicHeaderValueParser();
3504 …method @Deprecated protected org.apache.http.HeaderElement createHeaderElement(String, String, org…
3505 method @Deprecated protected org.apache.http.NameValuePair createNameValuePair(String, String);
3506 …method @Deprecated public static final org.apache.http.HeaderElement[] parseElements(String, org.a…
3507 …method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharA…
3508 …method @Deprecated public static final org.apache.http.HeaderElement parseHeaderElement(String, or…
3509 …method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.Ch…
3510 …method @Deprecated public static final org.apache.http.NameValuePair parseNameValuePair(String, or…
3511 …method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.Ch…
3512 …method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.Ch…
3513 …method @Deprecated public static final org.apache.http.NameValuePair[] parseParameters(String, org…
3514 …method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.Cha…
3515 field @Deprecated public static final org.apache.http.message.BasicHeaderValueParser DEFAULT;
3518 …@Deprecated public class BasicHttpEntityEnclosingRequest extends org.apache.http.message.BasicHttp…
3519 ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String);
3520 …ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String, org.apache.http.ProtocolVe…
3521 ctor @Deprecated public BasicHttpEntityEnclosingRequest(org.apache.http.RequestLine);
3522 method @Deprecated public boolean expectContinue();
3523 method @Deprecated public org.apache.http.HttpEntity getEntity();
3524 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3527 …@Deprecated public class BasicHttpRequest extends org.apache.http.message.AbstractHttpMessage impl…
3528 ctor @Deprecated public BasicHttpRequest(String, String);
3529 ctor @Deprecated public BasicHttpRequest(String, String, org.apache.http.ProtocolVersion);
3530 ctor @Deprecated public BasicHttpRequest(org.apache.http.RequestLine);
3531 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3532 method @Deprecated public org.apache.http.RequestLine getRequestLine();
3535 …@Deprecated public class BasicHttpResponse extends org.apache.http.message.AbstractHttpMessage imp…
3536 …ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine, org.apache.http.ReasonPhrase…
3537 ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine);
3538 ctor @Deprecated public BasicHttpResponse(org.apache.http.ProtocolVersion, int, String);
3539 method @Deprecated public org.apache.http.HttpEntity getEntity();
3540 method @Deprecated public java.util.Locale getLocale();
3541 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3542 method @Deprecated protected String getReason(int);
3543 method @Deprecated public org.apache.http.StatusLine getStatusLine();
3544 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3545 method @Deprecated public void setLocale(java.util.Locale);
3546 method @Deprecated public void setReasonPhrase(String);
3547 method @Deprecated public void setStatusCode(int);
3548 method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
3549 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
3550 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
3553 @Deprecated public class BasicLineFormatter implements org.apache.http.message.LineFormatter {
3554 ctor @Deprecated public BasicLineFormatter();
3555 …method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.ht…
3556 …method @Deprecated protected void doFormatHeader(org.apache.http.util.CharArrayBuffer, org.apache.…
3557 …method @Deprecated protected void doFormatRequestLine(org.apache.http.util.CharArrayBuffer, org.ap…
3558 …method @Deprecated protected void doFormatStatusLine(org.apache.http.util.CharArrayBuffer, org.apa…
3559 method @Deprecated protected int estimateProtocolVersionLen(org.apache.http.ProtocolVersion);
3560 …method @Deprecated public static final String formatHeader(org.apache.http.Header, org.apache.http…
3561 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.C…
3562 …method @Deprecated public static final String formatProtocolVersion(org.apache.http.ProtocolVersio…
3563 …method @Deprecated public static final String formatRequestLine(org.apache.http.RequestLine, org.a…
3564 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.u…
3565 …method @Deprecated public static final String formatStatusLine(org.apache.http.StatusLine, org.apa…
3566 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.ut…
3567 …method @Deprecated protected org.apache.http.util.CharArrayBuffer initBuffer(org.apache.http.util.…
3568 field @Deprecated public static final org.apache.http.message.BasicLineFormatter DEFAULT;
3571 @Deprecated public class BasicLineParser implements org.apache.http.message.LineParser {
3572 ctor @Deprecated public BasicLineParser(org.apache.http.ProtocolVersion);
3573 ctor @Deprecated public BasicLineParser();
3574 method @Deprecated protected org.apache.http.ProtocolVersion createProtocolVersion(int, int);
3575 …method @Deprecated protected org.apache.http.RequestLine createRequestLine(String, String, org.apa…
3576 …method @Deprecated protected org.apache.http.StatusLine createStatusLine(org.apache.http.ProtocolV…
3577 …method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apa…
3578 …method @Deprecated public static final org.apache.http.Header parseHeader(String, org.apache.http.…
3579 …method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer)…
3580 …method @Deprecated public static final org.apache.http.ProtocolVersion parseProtocolVersion(String…
3581 …method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.uti…
3582 …method @Deprecated public static final org.apache.http.RequestLine parseRequestLine(String, org.ap…
3583 …method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharAr…
3584 …method @Deprecated public static final org.apache.http.StatusLine parseStatusLine(String, org.apac…
3585 …method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArra…
3586 …method @Deprecated protected void skipWhitespace(org.apache.http.util.CharArrayBuffer, org.apache.…
3587 field @Deprecated public static final org.apache.http.message.BasicLineParser DEFAULT;
3588 field @Deprecated protected final org.apache.http.ProtocolVersion protocol;
3591 @Deprecated public class BasicListHeaderIterator implements org.apache.http.HeaderIterator {
3592 ctor @Deprecated public BasicListHeaderIterator(java.util.List, String);
3593 method @Deprecated protected boolean filterHeader(int);
3594 method @Deprecated protected int findNext(int);
3595 method @Deprecated public boolean hasNext();
3596 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3597 …method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementExcept…
3598 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3599 field @Deprecated protected final java.util.List allHeaders;
3600 field @Deprecated protected int currentIndex;
3601 field @Deprecated protected String headerName;
3602 field @Deprecated protected int lastIndex;
3605 …@Deprecated public class BasicNameValuePair implements java.lang.Cloneable org.apache.http.NameVal…
3606 ctor @Deprecated public BasicNameValuePair(String, String);
3607 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3608 method @Deprecated public String getName();
3609 method @Deprecated public String getValue();
3612 …@Deprecated public class BasicRequestLine implements java.lang.Cloneable org.apache.http.RequestLi…
3613 ctor @Deprecated public BasicRequestLine(String, String, org.apache.http.ProtocolVersion);
3614 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3615 method @Deprecated public String getMethod();
3616 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3617 method @Deprecated public String getUri();
3620 …@Deprecated public class BasicStatusLine implements java.lang.Cloneable org.apache.http.StatusLine…
3621 ctor @Deprecated public BasicStatusLine(org.apache.http.ProtocolVersion, int, String);
3622 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3623 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3624 method @Deprecated public String getReasonPhrase();
3625 method @Deprecated public int getStatusCode();
3628 @Deprecated public class BasicTokenIterator implements org.apache.http.TokenIterator {
3629 ctor @Deprecated public BasicTokenIterator(org.apache.http.HeaderIterator);
3630 method @Deprecated protected String createToken(String, int, int);
3631 method @Deprecated protected int findNext(int) throws org.apache.http.ParseException;
3632 method @Deprecated protected int findTokenEnd(int);
3633 method @Deprecated protected int findTokenSeparator(int);
3634 method @Deprecated protected int findTokenStart(int);
3635 method @Deprecated public boolean hasNext();
3636 method @Deprecated protected boolean isHttpSeparator(char);
3637 method @Deprecated protected boolean isTokenChar(char);
3638 method @Deprecated protected boolean isTokenSeparator(char);
3639 method @Deprecated protected boolean isWhitespace(char);
3640 …method @Deprecated public final Object next() throws java.util.NoSuchElementException, org.apache.…
3641 …method @Deprecated public String nextToken() throws java.util.NoSuchElementException, org.apache.h…
3642 method @Deprecated public final void remove() throws java.lang.UnsupportedOperationException;
3643 field @Deprecated public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
3644 field @Deprecated protected String currentHeader;
3645 field @Deprecated protected String currentToken;
3646 field @Deprecated protected final org.apache.http.HeaderIterator headerIt;
3647 field @Deprecated protected int searchPos;
3650 …@Deprecated public class BufferedHeader implements java.lang.Cloneable org.apache.http.FormattedHe…
3651 …ctor @Deprecated public BufferedHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.htt…
3652 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3653 method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
3654 …method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.Par…
3655 method @Deprecated public String getName();
3656 method @Deprecated public String getValue();
3657 method @Deprecated public int getValuePos();
3660 @Deprecated public class HeaderGroup implements java.lang.Cloneable {
3661 ctor @Deprecated public HeaderGroup();
3662 method @Deprecated public void addHeader(org.apache.http.Header);
3663 method @Deprecated public void clear();
3664 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3665 method @Deprecated public boolean containsHeader(String);
3666 method @Deprecated public org.apache.http.message.HeaderGroup copy();
3667 method @Deprecated public org.apache.http.Header[] getAllHeaders();
3668 method @Deprecated public org.apache.http.Header getCondensedHeader(String);
3669 method @Deprecated public org.apache.http.Header getFirstHeader(String);
3670 method @Deprecated public org.apache.http.Header[] getHeaders(String);
3671 method @Deprecated public org.apache.http.Header getLastHeader(String);
3672 method @Deprecated public org.apache.http.HeaderIterator iterator();
3673 method @Deprecated public org.apache.http.HeaderIterator iterator(String);
3674 method @Deprecated public void removeHeader(org.apache.http.Header);
3675 method @Deprecated public void setHeaders(org.apache.http.Header[]);
3676 method @Deprecated public void updateHeader(org.apache.http.Header);
3679 @Deprecated public interface HeaderValueFormatter {
3680 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util…
3681 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http…
3682 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http…
3683 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.ut…
3686 @Deprecated public interface HeaderValueParser {
3687 …method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharA…
3688 …method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.Ch…
3689 …method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.Ch…
3690 …method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.Cha…
3693 @Deprecated public interface LineFormatter {
3694 …method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.ht…
3695 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.C…
3696 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.u…
3697 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.ut…
3700 @Deprecated public interface LineParser {
3701 …method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apa…
3702 …method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer)…
3703 …method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.uti…
3704 …method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharAr…
3705 …method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArra…
3708 @Deprecated public class ParserCursor {
3709 ctor @Deprecated public ParserCursor(int, int);
3710 method @Deprecated public boolean atEnd();
3711 method @Deprecated public int getLowerBound();
3712 method @Deprecated public int getPos();
3713 method @Deprecated public int getUpperBound();
3714 method @Deprecated public void updatePos(int);
3721 …@Deprecated public abstract class AbstractHttpParams implements org.apache.http.params.HttpParams {
3722 ctor @Deprecated protected AbstractHttpParams();
3723 method @Deprecated public boolean getBooleanParameter(String, boolean);
3724 method @Deprecated public double getDoubleParameter(String, double);
3725 method @Deprecated public int getIntParameter(String, int);
3726 method @Deprecated public long getLongParameter(String, long);
3727 method @Deprecated public boolean isParameterFalse(String);
3728 method @Deprecated public boolean isParameterTrue(String);
3729 … method @Deprecated public org.apache.http.params.HttpParams setBooleanParameter(String, boolean);
3730 method @Deprecated public org.apache.http.params.HttpParams setDoubleParameter(String, double);
3731 method @Deprecated public org.apache.http.params.HttpParams setIntParameter(String, int);
3732 method @Deprecated public org.apache.http.params.HttpParams setLongParameter(String, long);
3735 …@Deprecated public final class BasicHttpParams extends org.apache.http.params.AbstractHttpParams i…
3736 ctor @Deprecated public BasicHttpParams();
3737 method @Deprecated public void clear();
3738 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3739 method @Deprecated public org.apache.http.params.HttpParams copy();
3740 method @Deprecated protected void copyParams(org.apache.http.params.HttpParams);
3741 method @Deprecated public Object getParameter(String);
3742 method @Deprecated public boolean isParameterSet(String);
3743 method @Deprecated public boolean isParameterSetLocally(String);
3744 method @Deprecated public boolean removeParameter(String);
3745 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3746 method @Deprecated public void setParameters(String[], Object);
3749 @Deprecated public interface CoreProtocolPNames {
3750 …field @Deprecated public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset…
3751 …field @Deprecated public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset…
3752 field @Deprecated public static final String ORIGIN_SERVER = "http.origin-server";
3753 field @Deprecated public static final String PROTOCOL_VERSION = "http.protocol.version";
3754 …field @Deprecated public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-tran…
3755 field @Deprecated public static final String USER_AGENT = "http.useragent";
3756 …field @Deprecated public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue";
3757 …field @Deprecated public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue";
3760 …@Deprecated public final class DefaultedHttpParams extends org.apache.http.params.AbstractHttpPara…
3761 …ctor @Deprecated public DefaultedHttpParams(org.apache.http.params.HttpParams, org.apache.http.par…
3762 method @Deprecated public org.apache.http.params.HttpParams copy();
3763 method @Deprecated public org.apache.http.params.HttpParams getDefaults();
3764 method @Deprecated public Object getParameter(String);
3765 method @Deprecated public boolean removeParameter(String);
3766 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3769 @Deprecated public abstract class HttpAbstractParamBean {
3770 ctor @Deprecated public HttpAbstractParamBean(org.apache.http.params.HttpParams);
3771 field @Deprecated protected final org.apache.http.params.HttpParams params;
3774 …@Deprecated public class HttpConnectionParamBean extends org.apache.http.params.HttpAbstractParamB…
3775 ctor @Deprecated public HttpConnectionParamBean(org.apache.http.params.HttpParams);
3776 method @Deprecated public void setConnectionTimeout(int);
3777 method @Deprecated public void setLinger(int);
3778 method @Deprecated public void setSoTimeout(int);
3779 method @Deprecated public void setSocketBufferSize(int);
3780 method @Deprecated public void setStaleCheckingEnabled(boolean);
3781 method @Deprecated public void setTcpNoDelay(boolean);
3784 …@Deprecated public class HttpProtocolParamBean extends org.apache.http.params.HttpAbstractParamBea…
3785 ctor @Deprecated public HttpProtocolParamBean(org.apache.http.params.HttpParams);
3786 method @Deprecated public void setContentCharset(String);
3787 method @Deprecated public void setHttpElementCharset(String);
3788 method @Deprecated public void setUseExpectContinue(boolean);
3789 method @Deprecated public void setUserAgent(String);
3790 method @Deprecated public void setVersion(org.apache.http.HttpVersion);
3793 …@Deprecated public final class HttpProtocolParams implements org.apache.http.params.CoreProtocolPN…
3794 method @Deprecated public static String getContentCharset(org.apache.http.params.HttpParams);
3795 … method @Deprecated public static String getHttpElementCharset(org.apache.http.params.HttpParams);
3796 method @Deprecated public static String getUserAgent(org.apache.http.params.HttpParams);
3797 …method @Deprecated public static org.apache.http.ProtocolVersion getVersion(org.apache.http.params…
3798 …method @Deprecated public static void setContentCharset(org.apache.http.params.HttpParams, String);
3799 …method @Deprecated public static void setHttpElementCharset(org.apache.http.params.HttpParams, Str…
3800 …method @Deprecated public static void setUseExpectContinue(org.apache.http.params.HttpParams, bool…
3801 method @Deprecated public static void setUserAgent(org.apache.http.params.HttpParams, String);
3802 …method @Deprecated public static void setVersion(org.apache.http.params.HttpParams, org.apache.htt…
3803 method @Deprecated public static boolean useExpectContinue(org.apache.http.params.HttpParams);
3810 @Deprecated public class BasicHttpContext implements org.apache.http.protocol.HttpContext {
3811 ctor @Deprecated public BasicHttpContext();
3812 ctor @Deprecated public BasicHttpContext(org.apache.http.protocol.HttpContext);
3813 method @Deprecated public Object getAttribute(String);
3814 method @Deprecated public Object removeAttribute(String);
3815 method @Deprecated public void setAttribute(String, Object);
3818 …@Deprecated public final class BasicHttpProcessor implements java.lang.Cloneable org.apache.http.p…
3819 ctor @Deprecated public BasicHttpProcessor();
3820 method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor);
3821 method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor, int);
3822 method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor);
3823 method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor, int);
3824 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3825 … method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3826 …method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int…
3827 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3828 method @Deprecated public void clearInterceptors();
3829 method @Deprecated public void clearRequestInterceptors();
3830 method @Deprecated public void clearResponseInterceptors();
3831 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3832 method @Deprecated public org.apache.http.protocol.BasicHttpProcessor copy();
3833 method @Deprecated protected void copyInterceptors(org.apache.http.protocol.BasicHttpProcessor);
3834 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3835 method @Deprecated public int getRequestInterceptorCount();
3836 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3837 method @Deprecated public int getResponseInterceptorCount();
3838 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
3839 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
3840 method @Deprecated public void removeRequestInterceptorByClass(Class);
3841 method @Deprecated public void removeResponseInterceptorByClass(Class);
3842 method @Deprecated public void setInterceptors(java.util.List);
3843 field @Deprecated protected java.util.List requestInterceptors;
3844 field @Deprecated protected java.util.List responseInterceptors;
3847 …@Deprecated public final class DefaultedHttpContext implements org.apache.http.protocol.HttpContex…
3848 …ctor @Deprecated public DefaultedHttpContext(org.apache.http.protocol.HttpContext, org.apache.http…
3849 method @Deprecated public Object getAttribute(String);
3850 method @Deprecated public org.apache.http.protocol.HttpContext getDefaults();
3851 method @Deprecated public Object removeAttribute(String);
3852 method @Deprecated public void setAttribute(String, Object);
3855 @Deprecated public interface ExecutionContext {
3856 field @Deprecated public static final String HTTP_CONNECTION = "http.connection";
3857 field @Deprecated public static final String HTTP_PROXY_HOST = "http.proxy_host";
3858 field @Deprecated public static final String HTTP_REQUEST = "http.request";
3859 field @Deprecated public static final String HTTP_REQ_SENT = "http.request_sent";
3860 field @Deprecated public static final String HTTP_RESPONSE = "http.response";
3861 field @Deprecated public static final String HTTP_TARGET_HOST = "http.target_host";
3864 @Deprecated public final class HTTP {
3865 method @Deprecated public static boolean isWhitespace(char);
3866 field @Deprecated public static final String ASCII = "ASCII";
3867 field @Deprecated public static final String CHARSET_PARAM = "; charset=";
3868 field @Deprecated public static final String CHUNK_CODING = "chunked";
3869 field @Deprecated public static final String CONN_CLOSE = "Close";
3870 field @Deprecated public static final String CONN_DIRECTIVE = "Connection";
3871 field @Deprecated public static final String CONN_KEEP_ALIVE = "Keep-Alive";
3872 field @Deprecated public static final String CONTENT_ENCODING = "Content-Encoding";
3873 field @Deprecated public static final String CONTENT_LEN = "Content-Length";
3874 field @Deprecated public static final String CONTENT_TYPE = "Content-Type";
3875 field @Deprecated public static final int CR = 13; // 0xd
3876 field @Deprecated public static final String DATE_HEADER = "Date";
3877 field @Deprecated public static final String DEFAULT_CONTENT_CHARSET = "ISO-8859-1";
3878 field @Deprecated public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
3879 field @Deprecated public static final String DEFAULT_PROTOCOL_CHARSET = "US-ASCII";
3880 field @Deprecated public static final String EXPECT_CONTINUE = "100-continue";
3881 field @Deprecated public static final String EXPECT_DIRECTIVE = "Expect";
3882 field @Deprecated public static final int HT = 9; // 0x9
3883 field @Deprecated public static final String IDENTITY_CODING = "identity";
3884 field @Deprecated public static final String ISO_8859_1 = "ISO-8859-1";
3885 field @Deprecated public static final int LF = 10; // 0xa
3886 field @Deprecated public static final String OCTET_STREAM_TYPE = "application/octet-stream";
3887 field @Deprecated public static final String PLAIN_TEXT_TYPE = "text/plain";
3888 field @Deprecated public static final String SERVER_HEADER = "Server";
3889 field @Deprecated public static final int SP = 32; // 0x20
3890 field @Deprecated public static final String TARGET_HOST = "Host";
3891 field @Deprecated public static final String TRANSFER_ENCODING = "Transfer-Encoding";
3892 field @Deprecated public static final String USER_AGENT = "User-Agent";
3893 field @Deprecated public static final String US_ASCII = "US-ASCII";
3894 field @Deprecated public static final String UTF_16 = "UTF-16";
3895 field @Deprecated public static final String UTF_8 = "UTF-8";
3898 @Deprecated public interface HttpContext {
3899 method @Deprecated public Object getAttribute(String);
3900 method @Deprecated public Object removeAttribute(String);
3901 method @Deprecated public void setAttribute(String, Object);
3902 field @Deprecated public static final String RESERVED_PREFIX = "http.";
3905 @Deprecated public class HttpDateGenerator {
3906 ctor @Deprecated public HttpDateGenerator();
3907 method @Deprecated public String getCurrentDate();
3908 field @Deprecated public static final java.util.TimeZone GMT;
3909 field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
3912 @Deprecated public interface HttpExpectationVerifier {
3913 …method @Deprecated public void verify(org.apache.http.HttpRequest, org.apache.http.HttpResponse, o…
3916 …@Deprecated public interface HttpProcessor extends org.apache.http.HttpRequestInterceptor org.apac…
3919 @Deprecated public class HttpRequestExecutor {
3920 ctor @Deprecated public HttpRequestExecutor();
3921 …method @Deprecated protected boolean canResponseHaveBody(org.apache.http.HttpRequest, org.apache.h…
3922 …method @Deprecated protected org.apache.http.HttpResponse doReceiveResponse(org.apache.http.HttpRe…
3923 …method @Deprecated protected org.apache.http.HttpResponse doSendRequest(org.apache.http.HttpReques…
3924 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpRequest, org.ap…
3925 …method @Deprecated public void postProcess(org.apache.http.HttpResponse, org.apache.http.protocol.…
3926 …method @Deprecated public void preProcess(org.apache.http.HttpRequest, org.apache.http.protocol.Ht…
3929 @Deprecated public interface HttpRequestHandler {
3930 …method @Deprecated public void handle(org.apache.http.HttpRequest, org.apache.http.HttpResponse, o…
3933 …@Deprecated public class HttpRequestHandlerRegistry implements org.apache.http.protocol.HttpReques…
3934 ctor @Deprecated public HttpRequestHandlerRegistry();
3935 method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3936 method @Deprecated protected boolean matchUriRequestPattern(String, String);
3937 method @Deprecated public void register(String, org.apache.http.protocol.HttpRequestHandler);
3938 method @Deprecated public void setHandlers(java.util.Map);
3939 method @Deprecated public void unregister(String);
3942 @Deprecated public interface HttpRequestHandlerResolver {
3943 method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3946 @Deprecated public interface HttpRequestInterceptorList {
3947 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3948 … method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3949 method @Deprecated public void clearRequestInterceptors();
3950 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3951 method @Deprecated public int getRequestInterceptorCount();
3952 method @Deprecated public void removeRequestInterceptorByClass(Class);
3953 method @Deprecated public void setInterceptors(java.util.List);
3956 @Deprecated public interface HttpResponseInterceptorList {
3957 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3958 …method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int…
3959 method @Deprecated public void clearResponseInterceptors();
3960 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3961 method @Deprecated public int getResponseInterceptorCount();
3962 method @Deprecated public void removeResponseInterceptorByClass(Class);
3963 method @Deprecated public void setInterceptors(java.util.List);
3966 @Deprecated public class HttpService {
3967 …ctor @Deprecated public HttpService(org.apache.http.protocol.HttpProcessor, org.apache.http.Connec…
3968 …method @Deprecated protected void doService(org.apache.http.HttpRequest, org.apache.http.HttpRespo…
3969 method @Deprecated public org.apache.http.params.HttpParams getParams();
3970 …method @Deprecated protected void handleException(org.apache.http.HttpException, org.apache.http.H…
3971 …method @Deprecated public void handleRequest(org.apache.http.HttpServerConnection, org.apache.http…
3972 method @Deprecated public void setConnReuseStrategy(org.apache.http.ConnectionReuseStrategy);
3973 …method @Deprecated public void setExpectationVerifier(org.apache.http.protocol.HttpExpectationVeri…
3974 …method @Deprecated public void setHandlerResolver(org.apache.http.protocol.HttpRequestHandlerResol…
3975 method @Deprecated public void setHttpProcessor(org.apache.http.protocol.HttpProcessor);
3976 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3977 method @Deprecated public void setResponseFactory(org.apache.http.HttpResponseFactory);
3980 @Deprecated public class RequestConnControl implements org.apache.http.HttpRequestInterceptor {
3981 ctor @Deprecated public RequestConnControl();
3982 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
3985 @Deprecated public class RequestContent implements org.apache.http.HttpRequestInterceptor {
3986 ctor @Deprecated public RequestContent();
3987 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
3990 @Deprecated public class RequestDate implements org.apache.http.HttpRequestInterceptor {
3991 ctor @Deprecated public RequestDate();
3992 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
3995 @Deprecated public class RequestExpectContinue implements org.apache.http.HttpRequestInterceptor {
3996 ctor @Deprecated public RequestExpectContinue();
3997 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4000 @Deprecated public class RequestTargetHost implements org.apache.http.HttpRequestInterceptor {
4001 ctor @Deprecated public RequestTargetHost();
4002 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4005 @Deprecated public class RequestUserAgent implements org.apache.http.HttpRequestInterceptor {
4006 ctor @Deprecated public RequestUserAgent();
4007 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4010 @Deprecated public class ResponseConnControl implements org.apache.http.HttpResponseInterceptor {
4011 ctor @Deprecated public ResponseConnControl();
4012 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4015 @Deprecated public class ResponseContent implements org.apache.http.HttpResponseInterceptor {
4016 ctor @Deprecated public ResponseContent();
4017 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4020 @Deprecated public class ResponseDate implements org.apache.http.HttpResponseInterceptor {
4021 ctor @Deprecated public ResponseDate();
4022 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4025 @Deprecated public class ResponseServer implements org.apache.http.HttpResponseInterceptor {
4026 ctor @Deprecated public ResponseServer();
4027 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4030 @Deprecated public class SyncBasicHttpContext extends org.apache.http.protocol.BasicHttpContext {
4031 ctor @Deprecated public SyncBasicHttpContext(org.apache.http.protocol.HttpContext);
4034 @Deprecated public class UriPatternMatcher {
4035 ctor @Deprecated public UriPatternMatcher();
4036 method @Deprecated public Object lookup(String);
4037 method @Deprecated protected boolean matchUriRequestPattern(String, String);
4038 method @Deprecated public void register(String, Object);
4039 method @Deprecated public void setHandlers(java.util.Map);
4040 method @Deprecated public void unregister(String);
4047 @Deprecated public final class ByteArrayBuffer {
4048 ctor @Deprecated public ByteArrayBuffer(int);
4049 method @Deprecated public void append(byte[], int, int);
4050 method @Deprecated public void append(int);
4051 method @Deprecated public void append(char[], int, int);
4052 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4053 method @Deprecated public byte[] buffer();
4054 method @Deprecated public int byteAt(int);
4055 method @Deprecated public int capacity();
4056 method @Deprecated public void clear();
4057 method @Deprecated public boolean isEmpty();
4058 method @Deprecated public boolean isFull();
4059 method @Deprecated public int length();
4060 method @Deprecated public void setLength(int);
4061 method @Deprecated public byte[] toByteArray();
4064 @Deprecated public final class CharArrayBuffer {
4065 ctor @Deprecated public CharArrayBuffer(int);
4066 method @Deprecated public void append(char[], int, int);
4067 method @Deprecated public void append(String);
4068 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4069 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer);
4070 method @Deprecated public void append(char);
4071 method @Deprecated public void append(byte[], int, int);
4072 method @Deprecated public void append(org.apache.http.util.ByteArrayBuffer, int, int);
4073 method @Deprecated public void append(Object);
4074 method @Deprecated public char[] buffer();
4075 method @Deprecated public int capacity();
4076 method @Deprecated public char charAt(int);
4077 method @Deprecated public void clear();
4078 method @Deprecated public void ensureCapacity(int);
4079 method @Deprecated public int indexOf(int, int, int);
4080 method @Deprecated public int indexOf(int);
4081 method @Deprecated public boolean isEmpty();
4082 method @Deprecated public boolean isFull();
4083 method @Deprecated public int length();
4084 method @Deprecated public void setLength(int);
4085 method @Deprecated public String substring(int, int);
4086 method @Deprecated public String substringTrimmed(int, int);
4087 method @Deprecated public char[] toCharArray();
4090 @Deprecated public final class EncodingUtils {
4091 method @Deprecated public static byte[] getAsciiBytes(String);
4092 method @Deprecated public static String getAsciiString(byte[], int, int);
4093 method @Deprecated public static String getAsciiString(byte[]);
4094 method @Deprecated public static byte[] getBytes(String, String);
4095 method @Deprecated public static String getString(byte[], int, int, String);
4096 method @Deprecated public static String getString(byte[], String);
4099 @Deprecated public final class EntityUtils {
4100 …method @Deprecated public static String getContentCharSet(org.apache.http.HttpEntity) throws org.a…
4101 …method @Deprecated public static byte[] toByteArray(org.apache.http.HttpEntity) throws java.io.IOE…
4102 …method @Deprecated public static String toString(org.apache.http.HttpEntity, String) throws java.i…
4103 …method @Deprecated public static String toString(org.apache.http.HttpEntity) throws java.io.IOExce…
4106 @Deprecated public final class ExceptionUtils {
4107 method @Deprecated public static void initCause(Throwable, Throwable);
4110 @Deprecated public final class LangUtils {
4111 method @Deprecated public static boolean equals(Object, Object);
4112 method @Deprecated public static boolean equals(Object[], Object[]);
4113 method @Deprecated public static int hashCode(int, int);
4114 method @Deprecated public static int hashCode(int, boolean);
4115 method @Deprecated public static int hashCode(int, Object);
4116 field @Deprecated public static final int HASH_OFFSET = 37; // 0x25
4117 field @Deprecated public static final int HASH_SEED = 17; // 0x11
4120 @Deprecated public class VersionInfo {
4121 ctor @Deprecated protected VersionInfo(String, String, String, String, String);
4122 …method @Deprecated protected static final org.apache.http.util.VersionInfo fromMap(String, java.ut…
4123 method @Deprecated public final String getClassloader();
4124 method @Deprecated public final String getModule();
4125 method @Deprecated public final String getPackage();
4126 method @Deprecated public final String getRelease();
4127 method @Deprecated public final String getTimestamp();
4128 …method @Deprecated public static final org.apache.http.util.VersionInfo[] loadVersionInfo(String[]…
4129 …method @Deprecated public static final org.apache.http.util.VersionInfo loadVersionInfo(String, Cl…
4130 field @Deprecated public static final String PROPERTY_MODULE = "info.module";
4131 field @Deprecated public static final String PROPERTY_RELEASE = "info.release";
4132 field @Deprecated public static final String PROPERTY_TIMESTAMP = "info.timestamp";
4133 field @Deprecated public static final String UNAVAILABLE = "UNAVAILABLE";
4134 field @Deprecated public static final String VERSION_PROPERTY_FILE = "version.properties";