Lines Matching full:deprecated
333 method @Deprecated public static String getBoundary();
354 …field @Deprecated protected static final String BOUNDARY = "----------------314159265358979323846";
355 field @Deprecated protected static final byte[] BOUNDARY_BYTES;
404 @Deprecated public interface BinaryDecoder extends org.apache.commons.codec.Decoder {
405 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
408 @Deprecated public interface BinaryEncoder extends org.apache.commons.codec.Encoder {
409 … method @Deprecated public byte[] encode(byte[]) throws org.apache.commons.codec.EncoderException;
412 @Deprecated public interface Decoder {
413 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
416 @Deprecated public class DecoderException extends java.lang.Exception {
417 ctor @Deprecated public DecoderException(String);
420 @Deprecated public interface Encoder {
421 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
424 @Deprecated public class EncoderException extends java.lang.Exception {
425 ctor @Deprecated public EncoderException(String);
428 @Deprecated public interface StringDecoder extends org.apache.commons.codec.Decoder {
429 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
432 @Deprecated public interface StringEncoder extends org.apache.commons.codec.Encoder {
433 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
436 @Deprecated public class StringEncoderComparator implements java.util.Comparator {
437 ctor @Deprecated public StringEncoderComparator();
438 ctor @Deprecated public StringEncoderComparator(org.apache.commons.codec.StringEncoder);
439 method @Deprecated public int compare(Object, Object);
446 …@Deprecated public class Base64 implements org.apache.commons.codec.BinaryDecoder org.apache.commo…
447 ctor @Deprecated public Base64();
448 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
449 method @Deprecated public byte[] decode(byte[]);
450 method @Deprecated public static byte[] decodeBase64(byte[]);
451 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
452 method @Deprecated public byte[] encode(byte[]);
453 method @Deprecated public static byte[] encodeBase64(byte[]);
454 method @Deprecated public static byte[] encodeBase64(byte[], boolean);
455 method @Deprecated public static byte[] encodeBase64Chunked(byte[]);
456 method @Deprecated public static boolean isArrayByteBase64(byte[]);
459 …@Deprecated public class BinaryCodec implements org.apache.commons.codec.BinaryDecoder org.apache.…
460 ctor @Deprecated public BinaryCodec();
461 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
462 method @Deprecated public byte[] decode(byte[]);
463 method @Deprecated public byte[] encode(byte[]);
464 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
465 method @Deprecated public static byte[] fromAscii(char[]);
466 method @Deprecated public static byte[] fromAscii(byte[]);
467 method @Deprecated public static byte[] toAsciiBytes(byte[]);
468 method @Deprecated public static char[] toAsciiChars(byte[]);
469 method @Deprecated public static String toAsciiString(byte[]);
470 method @Deprecated public byte[] toByteArray(String);
473 …@Deprecated public class Hex implements org.apache.commons.codec.BinaryDecoder org.apache.commons.…
474 ctor @Deprecated public Hex();
475 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
476 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
477 …method @Deprecated public static byte[] decodeHex(char[]) throws org.apache.commons.codec.DecoderE…
478 method @Deprecated public byte[] encode(byte[]);
479 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
480 method @Deprecated public static char[] encodeHex(byte[]);
481 …method @Deprecated protected static int toDigit(char, int) throws org.apache.commons.codec.Decoder…
488 @Deprecated public class DoubleMetaphone implements org.apache.commons.codec.StringEncoder {
489 ctor @Deprecated public DoubleMetaphone();
490 method @Deprecated protected char charAt(String, int);
491 method @Deprecated protected static boolean contains(String, int, int, String[]);
492 method @Deprecated public String doubleMetaphone(String);
493 method @Deprecated public String doubleMetaphone(String, boolean);
494 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
495 method @Deprecated public String encode(String);
496 method @Deprecated public int getMaxCodeLen();
497 method @Deprecated public boolean isDoubleMetaphoneEqual(String, String);
498 method @Deprecated public boolean isDoubleMetaphoneEqual(String, String, boolean);
499 method @Deprecated public void setMaxCodeLen(int);
500 field @Deprecated protected int maxCodeLen;
503 @Deprecated public class DoubleMetaphone.DoubleMetaphoneResult {
504 ctor @Deprecated public DoubleMetaphone.DoubleMetaphoneResult(int);
505 method @Deprecated public void append(char);
506 method @Deprecated public void append(char, char);
507 method @Deprecated public void append(String);
508 method @Deprecated public void append(String, String);
509 method @Deprecated public void appendAlternate(char);
510 method @Deprecated public void appendAlternate(String);
511 method @Deprecated public void appendPrimary(char);
512 method @Deprecated public void appendPrimary(String);
513 method @Deprecated public String getAlternate();
514 method @Deprecated public String getPrimary();
515 method @Deprecated public boolean isComplete();
518 @Deprecated public class Metaphone implements org.apache.commons.codec.StringEncoder {
519 ctor @Deprecated public Metaphone();
520 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
521 method @Deprecated public String encode(String);
522 method @Deprecated public int getMaxCodeLen();
523 method @Deprecated public boolean isMetaphoneEqual(String, String);
524 method @Deprecated public String metaphone(String);
525 method @Deprecated public void setMaxCodeLen(int);
528 @Deprecated public class RefinedSoundex implements org.apache.commons.codec.StringEncoder {
529 ctor @Deprecated public RefinedSoundex();
530 ctor @Deprecated public RefinedSoundex(char[]);
531 …method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderEx…
532 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
533 method @Deprecated public String encode(String);
534 method @Deprecated public String soundex(String);
535 … field @Deprecated public static final org.apache.commons.codec.language.RefinedSoundex US_ENGLISH;
536 field @Deprecated public static final char[] US_ENGLISH_MAPPING;
539 @Deprecated public class Soundex implements org.apache.commons.codec.StringEncoder {
540 ctor @Deprecated public Soundex();
541 ctor @Deprecated public Soundex(char[]);
542 …method @Deprecated public int difference(String, String) throws org.apache.commons.codec.EncoderEx…
543 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
544 method @Deprecated public String encode(String);
545 method @Deprecated public int getMaxLength();
546 method @Deprecated public void setMaxLength(int);
547 method @Deprecated public String soundex(String);
548 field @Deprecated public static final org.apache.commons.codec.language.Soundex US_ENGLISH;
549 field @Deprecated public static final char[] US_ENGLISH_MAPPING;
550 …field @Deprecated public static final String US_ENGLISH_MAPPING_STRING = "012301200224550126230102…
557 …@Deprecated public class BCodec implements org.apache.commons.codec.StringDecoder org.apache.commo…
558 ctor @Deprecated public BCodec();
559 ctor @Deprecated public BCodec(String);
560 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
561 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
562 …method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderExce…
563 …method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderExce…
564 …method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderExc…
565 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
566 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
567 method @Deprecated public String getDefaultCharset();
568 method @Deprecated protected String getEncoding();
571 …@Deprecated public class QCodec implements org.apache.commons.codec.StringDecoder org.apache.commo…
572 ctor @Deprecated public QCodec();
573 ctor @Deprecated public QCodec(String);
574 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
575 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
576 …method @Deprecated protected byte[] doDecoding(byte[]) throws org.apache.commons.codec.DecoderExce…
577 …method @Deprecated protected byte[] doEncoding(byte[]) throws org.apache.commons.codec.EncoderExce…
578 …method @Deprecated public String encode(String, String) throws org.apache.commons.codec.EncoderExc…
579 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
580 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
581 method @Deprecated public String getDefaultCharset();
582 method @Deprecated protected String getEncoding();
583 method @Deprecated public boolean isEncodeBlanks();
584 method @Deprecated public void setEncodeBlanks(boolean);
587 …@Deprecated public class QuotedPrintableCodec implements org.apache.commons.codec.BinaryDecoder or…
588 ctor @Deprecated public QuotedPrintableCodec();
589 ctor @Deprecated public QuotedPrintableCodec(String);
590 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
591 …method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderExc…
592 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
593 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
594 …method @Deprecated public static final byte[] decodeQuotedPrintable(byte[]) throws org.apache.comm…
595 method @Deprecated public byte[] encode(byte[]);
596 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
597 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
598 …method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingExceptio…
599 method @Deprecated public static final byte[] encodeQuotedPrintable(java.util.BitSet, byte[]);
600 method @Deprecated public String getDefaultCharset();
603 …@Deprecated public class URLCodec implements org.apache.commons.codec.BinaryDecoder org.apache.com…
604 ctor @Deprecated public URLCodec();
605 ctor @Deprecated public URLCodec(String);
606 … method @Deprecated public byte[] decode(byte[]) throws org.apache.commons.codec.DecoderException;
607 …method @Deprecated public String decode(String, String) throws org.apache.commons.codec.DecoderExc…
608 … method @Deprecated public String decode(String) throws org.apache.commons.codec.DecoderException;
609 … method @Deprecated public Object decode(Object) throws org.apache.commons.codec.DecoderException;
610 …method @Deprecated public static final byte[] decodeUrl(byte[]) throws org.apache.commons.codec.De…
611 method @Deprecated public byte[] encode(byte[]);
612 …method @Deprecated public String encode(String, String) throws java.io.UnsupportedEncodingExceptio…
613 … method @Deprecated public String encode(String) throws org.apache.commons.codec.EncoderException;
614 … method @Deprecated public Object encode(Object) throws org.apache.commons.codec.EncoderException;
615 method @Deprecated public static final byte[] encodeUrl(java.util.BitSet, byte[]);
616 method @Deprecated public String getDefaultCharset();
617 method @Deprecated public String getEncoding();
618 field @Deprecated protected static byte ESCAPE_CHAR;
619 field @Deprecated protected static final java.util.BitSet WWW_FORM_URL;
620 field @Deprecated protected String charset;
627 @Deprecated public interface Log {
628 method @Deprecated public void debug(Object);
629 method @Deprecated public void debug(Object, Throwable);
630 method @Deprecated public void error(Object);
631 method @Deprecated public void error(Object, Throwable);
632 method @Deprecated public void fatal(Object);
633 method @Deprecated public void fatal(Object, Throwable);
634 method @Deprecated public void info(Object);
635 method @Deprecated public void info(Object, Throwable);
636 method @Deprecated public boolean isDebugEnabled();
637 method @Deprecated public boolean isErrorEnabled();
638 method @Deprecated public boolean isFatalEnabled();
639 method @Deprecated public boolean isInfoEnabled();
640 method @Deprecated public boolean isTraceEnabled();
641 method @Deprecated public boolean isWarnEnabled();
642 method @Deprecated public void trace(Object);
643 method @Deprecated public void trace(Object, Throwable);
644 method @Deprecated public void warn(Object);
645 method @Deprecated public void warn(Object, Throwable);
648 @Deprecated public class LogConfigurationException extends java.lang.RuntimeException {
649 ctor @Deprecated public LogConfigurationException();
650 ctor @Deprecated public LogConfigurationException(String);
651 ctor @Deprecated public LogConfigurationException(Throwable);
652 ctor @Deprecated public LogConfigurationException(String, Throwable);
653 field @Deprecated protected Throwable cause;
656 @Deprecated public abstract class LogFactory {
657 ctor @Deprecated protected LogFactory();
658 method @Deprecated protected static Object createFactory(String, ClassLoader);
659 …method @Deprecated protected static ClassLoader directGetContextClassLoader() throws org.apache.co…
660 method @Deprecated public abstract Object getAttribute(String);
661 method @Deprecated public abstract String[] getAttributeNames();
662 method @Deprecated protected static ClassLoader getClassLoader(Class);
663 …method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.…
664 …method @Deprecated public static org.apache.commons.logging.LogFactory getFactory() throws org.apa…
665 …method @Deprecated public abstract org.apache.commons.logging.Log getInstance(Class) throws org.ap…
666 …method @Deprecated public abstract org.apache.commons.logging.Log getInstance(String) throws org.a…
667 …method @Deprecated public static org.apache.commons.logging.Log getLog(Class) throws org.apache.co…
668 …method @Deprecated public static org.apache.commons.logging.Log getLog(String) throws org.apache.c…
669 method @Deprecated protected static boolean isDiagnosticsEnabled();
670 method @Deprecated protected static final void logRawDiagnostic(String);
671 …method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, Class…
672 …method @Deprecated protected static org.apache.commons.logging.LogFactory newFactory(String, Class…
673 method @Deprecated public static String objectId(Object);
674 method @Deprecated public abstract void release();
675 method @Deprecated public static void release(ClassLoader);
676 method @Deprecated public static void releaseAll();
677 method @Deprecated public abstract void removeAttribute(String);
678 method @Deprecated public abstract void setAttribute(String, Object);
679 …field @Deprecated public static final String DIAGNOSTICS_DEST_PROPERTY = "org.apache.commons.loggi…
680 …field @Deprecated public static final String FACTORY_DEFAULT = "org.apache.commons.logging.impl.Lo…
681 field @Deprecated public static final String FACTORY_PROPERTIES = "commons-logging.properties";
682 …field @Deprecated public static final String FACTORY_PROPERTY = "org.apache.commons.logging.LogFac…
683 …field @Deprecated public static final String HASHTABLE_IMPLEMENTATION_PROPERTY = "org.apache.commo…
684 field @Deprecated public static final String PRIORITY_KEY = "priority";
685 …field @Deprecated protected static final String SERVICE_ID = "META-INF/services/org.apache.commons…
686 field @Deprecated public static final String TCCL_KEY = "use_tccl";
687 field @Deprecated protected static java.util.Hashtable factories;
688 field @Deprecated protected static org.apache.commons.logging.LogFactory nullClassLoaderFactory;
691 @Deprecated public class LogSource {
692 method @Deprecated public static org.apache.commons.logging.Log getInstance(String);
693 method @Deprecated public static org.apache.commons.logging.Log getInstance(Class);
694 method @Deprecated public static String[] getLogNames();
695 method @Deprecated public static org.apache.commons.logging.Log makeNewLogInstance(String);
696 …method @Deprecated public static void setLogImplementation(String) throws java.lang.ClassNotFoundE…
697 …method @Deprecated public static void setLogImplementation(Class) throws java.lang.ExceptionInInit…
698 field @Deprecated protected static boolean jdk14IsAvailable;
699 field @Deprecated protected static boolean log4jIsAvailable;
700 field @Deprecated protected static java.lang.reflect.Constructor logImplctor;
701 field @Deprecated protected static java.util.Hashtable logs;
708 …@Deprecated public class Jdk14Logger implements org.apache.commons.logging.Log java.io.Serializabl…
709 ctor @Deprecated public Jdk14Logger(String);
710 method @Deprecated public void debug(Object);
711 method @Deprecated public void debug(Object, Throwable);
712 method @Deprecated public void error(Object);
713 method @Deprecated public void error(Object, Throwable);
714 method @Deprecated public void fatal(Object);
715 method @Deprecated public void fatal(Object, Throwable);
716 method @Deprecated public java.util.logging.Logger getLogger();
717 method @Deprecated public void info(Object);
718 method @Deprecated public void info(Object, Throwable);
719 method @Deprecated public boolean isDebugEnabled();
720 method @Deprecated public boolean isErrorEnabled();
721 method @Deprecated public boolean isFatalEnabled();
722 method @Deprecated public boolean isInfoEnabled();
723 method @Deprecated public boolean isTraceEnabled();
724 method @Deprecated public boolean isWarnEnabled();
725 method @Deprecated public void trace(Object);
726 method @Deprecated public void trace(Object, Throwable);
727 method @Deprecated public void warn(Object);
728 method @Deprecated public void warn(Object, Throwable);
729 field @Deprecated protected static final java.util.logging.Level dummyLevel;
730 field @Deprecated protected transient java.util.logging.Logger logger;
731 field @Deprecated protected String name;
734 @Deprecated public class LogFactoryImpl extends org.apache.commons.logging.LogFactory {
735 ctor @Deprecated public LogFactoryImpl();
736 method @Deprecated public Object getAttribute(String);
737 method @Deprecated public String[] getAttributeNames();
738 method @Deprecated protected static ClassLoader getClassLoader(Class);
739 …method @Deprecated protected static ClassLoader getContextClassLoader() throws org.apache.commons.…
740 …method @Deprecated public org.apache.commons.logging.Log getInstance(Class) throws org.apache.comm…
741 …method @Deprecated public org.apache.commons.logging.Log getInstance(String) throws org.apache.com…
742 method @Deprecated protected String getLogClassName();
743 …method @Deprecated protected java.lang.reflect.Constructor getLogConstructor() throws org.apache.c…
744 method @Deprecated protected static boolean isDiagnosticsEnabled();
745 method @Deprecated protected boolean isJdk13LumberjackAvailable();
746 method @Deprecated protected boolean isJdk14Available();
747 method @Deprecated protected boolean isLog4JAvailable();
748 method @Deprecated protected void logDiagnostic(String);
749 …method @Deprecated protected org.apache.commons.logging.Log newInstance(String) throws org.apache.…
750 method @Deprecated public void release();
751 method @Deprecated public void removeAttribute(String);
752 method @Deprecated public void setAttribute(String, Object);
753 …field @Deprecated public static final String ALLOW_FLAWED_CONTEXT_PROPERTY = "org.apache.commons.l…
754 …field @Deprecated public static final String ALLOW_FLAWED_DISCOVERY_PROPERTY = "org.apache.commons…
755 …field @Deprecated public static final String ALLOW_FLAWED_HIERARCHY_PROPERTY = "org.apache.commons…
756 field @Deprecated public static final String LOG_PROPERTY = "org.apache.commons.logging.Log";
757 …field @Deprecated protected static final String LOG_PROPERTY_OLD = "org.apache.commons.logging.log…
758 field @Deprecated protected java.util.Hashtable attributes;
759 field @Deprecated protected java.util.Hashtable instances;
760 field @Deprecated protected java.lang.reflect.Constructor logConstructor;
761 field @Deprecated protected Class[] logConstructorSignature;
762 field @Deprecated protected java.lang.reflect.Method logMethod;
763 field @Deprecated protected Class[] logMethodSignature;
766 @Deprecated public class NoOpLog implements org.apache.commons.logging.Log java.io.Serializable {
767 ctor @Deprecated public NoOpLog();
768 ctor @Deprecated public NoOpLog(String);
769 method @Deprecated public void debug(Object);
770 method @Deprecated public void debug(Object, Throwable);
771 method @Deprecated public void error(Object);
772 method @Deprecated public void error(Object, Throwable);
773 method @Deprecated public void fatal(Object);
774 method @Deprecated public void fatal(Object, Throwable);
775 method @Deprecated public void info(Object);
776 method @Deprecated public void info(Object, Throwable);
777 method @Deprecated public final boolean isDebugEnabled();
778 method @Deprecated public final boolean isErrorEnabled();
779 method @Deprecated public final boolean isFatalEnabled();
780 method @Deprecated public final boolean isInfoEnabled();
781 method @Deprecated public final boolean isTraceEnabled();
782 method @Deprecated public final boolean isWarnEnabled();
783 method @Deprecated public void trace(Object);
784 method @Deprecated public void trace(Object, Throwable);
785 method @Deprecated public void warn(Object);
786 method @Deprecated public void warn(Object, Throwable);
789 …@Deprecated public class SimpleLog implements org.apache.commons.logging.Log java.io.Serializable {
790 ctor @Deprecated public SimpleLog(String);
791 method @Deprecated public final void debug(Object);
792 method @Deprecated public final void debug(Object, Throwable);
793 method @Deprecated public final void error(Object);
794 method @Deprecated public final void error(Object, Throwable);
795 method @Deprecated public final void fatal(Object);
796 method @Deprecated public final void fatal(Object, Throwable);
797 method @Deprecated public int getLevel();
798 method @Deprecated public final void info(Object);
799 method @Deprecated public final void info(Object, Throwable);
800 method @Deprecated public final boolean isDebugEnabled();
801 method @Deprecated public final boolean isErrorEnabled();
802 method @Deprecated public final boolean isFatalEnabled();
803 method @Deprecated public final boolean isInfoEnabled();
804 method @Deprecated protected boolean isLevelEnabled(int);
805 method @Deprecated public final boolean isTraceEnabled();
806 method @Deprecated public final boolean isWarnEnabled();
807 method @Deprecated protected void log(int, Object, Throwable);
808 method @Deprecated public void setLevel(int);
809 method @Deprecated public final void trace(Object);
810 method @Deprecated public final void trace(Object, Throwable);
811 method @Deprecated public final void warn(Object);
812 method @Deprecated public final void warn(Object, Throwable);
813 method @Deprecated protected void write(StringBuffer);
814 …field @Deprecated protected static final String DEFAULT_DATE_TIME_FORMAT = "yyyy/MM/dd HH:mm:ss:SS…
815 field @Deprecated public static final int LOG_LEVEL_ALL = 0; // 0x0
816 field @Deprecated public static final int LOG_LEVEL_DEBUG = 2; // 0x2
817 field @Deprecated public static final int LOG_LEVEL_ERROR = 5; // 0x5
818 field @Deprecated public static final int LOG_LEVEL_FATAL = 6; // 0x6
819 field @Deprecated public static final int LOG_LEVEL_INFO = 3; // 0x3
820 field @Deprecated public static final int LOG_LEVEL_OFF = 7; // 0x7
821 field @Deprecated public static final int LOG_LEVEL_TRACE = 1; // 0x1
822 field @Deprecated public static final int LOG_LEVEL_WARN = 4; // 0x4
823 field @Deprecated protected int currentLogLevel;
824 field @Deprecated protected static java.text.DateFormat dateFormatter;
825 field @Deprecated protected static String dateTimeFormat;
826 field @Deprecated protected String logName;
827 field @Deprecated protected static boolean showDateTime;
828 field @Deprecated protected static boolean showLogName;
829 field @Deprecated protected static boolean showShortName;
830 field @Deprecated protected static final java.util.Properties simpleLogProps;
831 …field @Deprecated protected static final String systemPrefix = "org.apache.commons.logging.simplel…
834 @Deprecated public final class WeakHashtable extends java.util.Hashtable {
835 ctor @Deprecated public WeakHashtable();
836 method @Deprecated public java.util.Enumeration elements();
837 method @Deprecated public java.util.Set entrySet();
838 method @Deprecated public Object get(Object);
839 method @Deprecated public java.util.Set keySet();
840 method @Deprecated public java.util.Enumeration keys();
841 method @Deprecated public Object put(Object, Object);
842 method @Deprecated public void putAll(java.util.Map);
843 method @Deprecated public Object remove(Object);
844 method @Deprecated public java.util.Collection values();
851 @Deprecated public class ConnectionClosedException extends java.io.IOException {
852 ctor @Deprecated public ConnectionClosedException(String);
855 @Deprecated public interface ConnectionReuseStrategy {
856 …method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol…
859 @Deprecated public interface FormattedHeader extends org.apache.http.Header {
860 method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
861 method @Deprecated public int getValuePos();
864 @Deprecated public interface Header {
865 …method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.Par…
866 method @Deprecated public String getName();
867 method @Deprecated public String getValue();
870 @Deprecated public interface HeaderElement {
871 method @Deprecated public String getName();
872 method @Deprecated public org.apache.http.NameValuePair getParameter(int);
873 method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
874 method @Deprecated public int getParameterCount();
875 method @Deprecated public org.apache.http.NameValuePair[] getParameters();
876 method @Deprecated public String getValue();
879 @Deprecated public interface HeaderElementIterator extends java.util.Iterator {
880 method @Deprecated public org.apache.http.HeaderElement nextElement();
883 @Deprecated public interface HeaderIterator extends java.util.Iterator {
884 method @Deprecated public org.apache.http.Header nextHeader();
887 @Deprecated public interface HttpClientConnection extends org.apache.http.HttpConnection {
888 method @Deprecated public void flush() throws java.io.IOException;
889 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
890 …method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apac…
891 …method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.h…
892 …method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throw…
893 …method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.ht…
896 @Deprecated public interface HttpConnection {
897 method @Deprecated public void close() throws java.io.IOException;
898 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
899 method @Deprecated public int getSocketTimeout();
900 method @Deprecated public boolean isOpen();
901 method @Deprecated public boolean isStale();
902 method @Deprecated public void setSocketTimeout(int);
903 method @Deprecated public void shutdown() throws java.io.IOException;
906 @Deprecated public interface HttpConnectionMetrics {
907 method @Deprecated public Object getMetric(String);
908 method @Deprecated public long getReceivedBytesCount();
909 method @Deprecated public long getRequestCount();
910 method @Deprecated public long getResponseCount();
911 method @Deprecated public long getSentBytesCount();
912 method @Deprecated public void reset();
915 @Deprecated public interface HttpEntity {
916 method @Deprecated public void consumeContent() throws java.io.IOException;
917 …method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.I…
918 method @Deprecated public org.apache.http.Header getContentEncoding();
919 method @Deprecated public long getContentLength();
920 method @Deprecated public org.apache.http.Header getContentType();
921 method @Deprecated public boolean isChunked();
922 method @Deprecated public boolean isRepeatable();
923 method @Deprecated public boolean isStreaming();
924 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
927 @Deprecated public interface HttpEntityEnclosingRequest extends org.apache.http.HttpRequest {
928 method @Deprecated public boolean expectContinue();
929 method @Deprecated public org.apache.http.HttpEntity getEntity();
930 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
933 @Deprecated public class HttpException extends java.lang.Exception {
934 ctor @Deprecated public HttpException();
935 ctor @Deprecated public HttpException(String);
936 ctor @Deprecated public HttpException(String, Throwable);
939 @Deprecated public final class HttpHost implements java.lang.Cloneable {
940 ctor @Deprecated public HttpHost(String, int, String);
941 ctor @Deprecated public HttpHost(String, int);
942 ctor @Deprecated public HttpHost(String);
943 ctor @Deprecated public HttpHost(org.apache.http.HttpHost);
944 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
945 method @Deprecated public String getHostName();
946 method @Deprecated public int getPort();
947 method @Deprecated public String getSchemeName();
948 method @Deprecated public String toHostString();
949 method @Deprecated public String toURI();
950 field @Deprecated public static final String DEFAULT_SCHEME_NAME = "http";
951 field @Deprecated protected final String hostname;
952 field @Deprecated protected final String lcHostname;
953 field @Deprecated protected final int port;
954 field @Deprecated protected final String schemeName;
957 @Deprecated public interface HttpInetConnection extends org.apache.http.HttpConnection {
958 method @Deprecated public java.net.InetAddress getLocalAddress();
959 method @Deprecated public int getLocalPort();
960 method @Deprecated public java.net.InetAddress getRemoteAddress();
961 method @Deprecated public int getRemotePort();
964 @Deprecated public interface HttpMessage {
965 method @Deprecated public void addHeader(org.apache.http.Header);
966 method @Deprecated public void addHeader(String, String);
967 method @Deprecated public boolean containsHeader(String);
968 method @Deprecated public org.apache.http.Header[] getAllHeaders();
969 method @Deprecated public org.apache.http.Header getFirstHeader(String);
970 method @Deprecated public org.apache.http.Header[] getHeaders(String);
971 method @Deprecated public org.apache.http.Header getLastHeader(String);
972 method @Deprecated public org.apache.http.params.HttpParams getParams();
973 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
974 method @Deprecated public org.apache.http.HeaderIterator headerIterator();
975 method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
976 method @Deprecated public void removeHeader(org.apache.http.Header);
977 method @Deprecated public void removeHeaders(String);
978 method @Deprecated public void setHeader(org.apache.http.Header);
979 method @Deprecated public void setHeader(String, String);
980 method @Deprecated public void setHeaders(org.apache.http.Header[]);
981 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
984 @Deprecated public interface HttpRequest extends org.apache.http.HttpMessage {
985 method @Deprecated public org.apache.http.RequestLine getRequestLine();
988 @Deprecated public interface HttpRequestFactory {
989 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) …
990 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.ap…
993 @Deprecated public interface HttpRequestInterceptor {
994 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
997 @Deprecated public interface HttpResponse extends org.apache.http.HttpMessage {
998 method @Deprecated public org.apache.http.HttpEntity getEntity();
999 method @Deprecated public java.util.Locale getLocale();
1000 method @Deprecated public org.apache.http.StatusLine getStatusLine();
1001 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
1002 method @Deprecated public void setLocale(java.util.Locale);
1003 method @Deprecated public void setReasonPhrase(String) throws java.lang.IllegalStateException;
1004 method @Deprecated public void setStatusCode(int) throws java.lang.IllegalStateException;
1005 method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
1006 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
1007 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
1010 @Deprecated public interface HttpResponseFactory {
1011 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVer…
1012 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine,…
1015 @Deprecated public interface HttpResponseInterceptor {
1016 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
1019 @Deprecated public interface HttpServerConnection extends org.apache.http.HttpConnection {
1020 method @Deprecated public void flush() throws java.io.IOException;
1021 …method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) th…
1022 …method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.htt…
1023 …method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.…
1024 …method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.…
1027 @Deprecated public interface HttpStatus {
1028 field @Deprecated public static final int SC_ACCEPTED = 202; // 0xca
1029 field @Deprecated public static final int SC_BAD_GATEWAY = 502; // 0x1f6
1030 field @Deprecated public static final int SC_BAD_REQUEST = 400; // 0x190
1031 field @Deprecated public static final int SC_CONFLICT = 409; // 0x199
1032 field @Deprecated public static final int SC_CONTINUE = 100; // 0x64
1033 field @Deprecated public static final int SC_CREATED = 201; // 0xc9
1034 field @Deprecated public static final int SC_EXPECTATION_FAILED = 417; // 0x1a1
1035 field @Deprecated public static final int SC_FAILED_DEPENDENCY = 424; // 0x1a8
1036 field @Deprecated public static final int SC_FORBIDDEN = 403; // 0x193
1037 field @Deprecated public static final int SC_GATEWAY_TIMEOUT = 504; // 0x1f8
1038 field @Deprecated public static final int SC_GONE = 410; // 0x19a
1039 field @Deprecated public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505; // 0x1f9
1040 field @Deprecated public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419; // 0x1a3
1041 field @Deprecated public static final int SC_INSUFFICIENT_STORAGE = 507; // 0x1fb
1042 field @Deprecated public static final int SC_INTERNAL_SERVER_ERROR = 500; // 0x1f4
1043 field @Deprecated public static final int SC_LENGTH_REQUIRED = 411; // 0x19b
1044 field @Deprecated public static final int SC_LOCKED = 423; // 0x1a7
1045 field @Deprecated public static final int SC_METHOD_FAILURE = 420; // 0x1a4
1046 field @Deprecated public static final int SC_METHOD_NOT_ALLOWED = 405; // 0x195
1047 field @Deprecated public static final int SC_MOVED_PERMANENTLY = 301; // 0x12d
1048 field @Deprecated public static final int SC_MOVED_TEMPORARILY = 302; // 0x12e
1049 field @Deprecated public static final int SC_MULTIPLE_CHOICES = 300; // 0x12c
1050 field @Deprecated public static final int SC_MULTI_STATUS = 207; // 0xcf
1051 field @Deprecated public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203; // 0xcb
1052 field @Deprecated public static final int SC_NOT_ACCEPTABLE = 406; // 0x196
1053 field @Deprecated public static final int SC_NOT_FOUND = 404; // 0x194
1054 field @Deprecated public static final int SC_NOT_IMPLEMENTED = 501; // 0x1f5
1055 field @Deprecated public static final int SC_NOT_MODIFIED = 304; // 0x130
1056 field @Deprecated public static final int SC_NO_CONTENT = 204; // 0xcc
1057 field @Deprecated public static final int SC_OK = 200; // 0xc8
1058 field @Deprecated public static final int SC_PARTIAL_CONTENT = 206; // 0xce
1059 field @Deprecated public static final int SC_PAYMENT_REQUIRED = 402; // 0x192
1060 field @Deprecated public static final int SC_PRECONDITION_FAILED = 412; // 0x19c
1061 field @Deprecated public static final int SC_PROCESSING = 102; // 0x66
1062 field @Deprecated public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407; // 0x197
1063 field @Deprecated public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416; // 0x1a0
1064 field @Deprecated public static final int SC_REQUEST_TIMEOUT = 408; // 0x198
1065 field @Deprecated public static final int SC_REQUEST_TOO_LONG = 413; // 0x19d
1066 field @Deprecated public static final int SC_REQUEST_URI_TOO_LONG = 414; // 0x19e
1067 field @Deprecated public static final int SC_RESET_CONTENT = 205; // 0xcd
1068 field @Deprecated public static final int SC_SEE_OTHER = 303; // 0x12f
1069 field @Deprecated public static final int SC_SERVICE_UNAVAILABLE = 503; // 0x1f7
1070 field @Deprecated public static final int SC_SWITCHING_PROTOCOLS = 101; // 0x65
1071 field @Deprecated public static final int SC_TEMPORARY_REDIRECT = 307; // 0x133
1072 field @Deprecated public static final int SC_UNAUTHORIZED = 401; // 0x191
1073 field @Deprecated public static final int SC_UNPROCESSABLE_ENTITY = 422; // 0x1a6
1074 field @Deprecated public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415; // 0x19f
1075 field @Deprecated public static final int SC_USE_PROXY = 305; // 0x131
1078 …@Deprecated public final class HttpVersion extends org.apache.http.ProtocolVersion implements java…
1079 ctor @Deprecated public HttpVersion(int, int);
1080 field @Deprecated public static final String HTTP = "HTTP";
1081 field @Deprecated public static final org.apache.http.HttpVersion HTTP_0_9;
1082 field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_0;
1083 field @Deprecated public static final org.apache.http.HttpVersion HTTP_1_1;
1086 @Deprecated public class MalformedChunkCodingException extends java.io.IOException {
1087 ctor @Deprecated public MalformedChunkCodingException();
1088 ctor @Deprecated public MalformedChunkCodingException(String);
1091 @Deprecated public class MethodNotSupportedException extends org.apache.http.HttpException {
1092 ctor @Deprecated public MethodNotSupportedException(String);
1093 ctor @Deprecated public MethodNotSupportedException(String, Throwable);
1096 @Deprecated public interface NameValuePair {
1097 method @Deprecated public String getName();
1098 method @Deprecated public String getValue();
1101 @Deprecated public class NoHttpResponseException extends java.io.IOException {
1102 ctor @Deprecated public NoHttpResponseException(String);
1105 @Deprecated public class ParseException extends java.lang.RuntimeException {
1106 ctor @Deprecated public ParseException();
1107 ctor @Deprecated public ParseException(String);
1110 @Deprecated public class ProtocolException extends org.apache.http.HttpException {
1111 ctor @Deprecated public ProtocolException();
1112 ctor @Deprecated public ProtocolException(String);
1113 ctor @Deprecated public ProtocolException(String, Throwable);
1116 @Deprecated public class ProtocolVersion implements java.lang.Cloneable java.io.Serializable {
1117 ctor @Deprecated public ProtocolVersion(String, int, int);
1118 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1119 method @Deprecated public int compareToVersion(org.apache.http.ProtocolVersion);
1120 method @Deprecated public final boolean equals(Object);
1121 method @Deprecated public org.apache.http.ProtocolVersion forVersion(int, int);
1122 method @Deprecated public final int getMajor();
1123 method @Deprecated public final int getMinor();
1124 method @Deprecated public final String getProtocol();
1125 method @Deprecated public final boolean greaterEquals(org.apache.http.ProtocolVersion);
1126 method @Deprecated public final int hashCode();
1127 method @Deprecated public boolean isComparable(org.apache.http.ProtocolVersion);
1128 method @Deprecated public final boolean lessEquals(org.apache.http.ProtocolVersion);
1129 field @Deprecated protected final int major;
1130 field @Deprecated protected final int minor;
1131 field @Deprecated protected final String protocol;
1134 @Deprecated public interface ReasonPhraseCatalog {
1135 method @Deprecated public String getReason(int, java.util.Locale);
1138 @Deprecated public interface RequestLine {
1139 method @Deprecated public String getMethod();
1140 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1141 method @Deprecated public String getUri();
1144 @Deprecated public interface StatusLine {
1145 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1146 method @Deprecated public String getReasonPhrase();
1147 method @Deprecated public int getStatusCode();
1150 @Deprecated public interface TokenIterator extends java.util.Iterator {
1151 method @Deprecated public String nextToken();
1154 …@Deprecated public class UnsupportedHttpVersionException extends org.apache.http.ProtocolException…
1155 ctor @Deprecated public UnsupportedHttpVersionException();
1156 ctor @Deprecated public UnsupportedHttpVersionException(String);
1163 @Deprecated public final class AUTH {
1164 field @Deprecated public static final String PROXY_AUTH = "Proxy-Authenticate";
1165 field @Deprecated public static final String PROXY_AUTH_RESP = "Proxy-Authorization";
1166 field @Deprecated public static final String WWW_AUTH = "WWW-Authenticate";
1167 field @Deprecated public static final String WWW_AUTH_RESP = "Authorization";
1170 @Deprecated public interface AuthScheme {
1171 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
1172 method @Deprecated public String getParameter(String);
1173 method @Deprecated public String getRealm();
1174 method @Deprecated public String getSchemeName();
1175 method @Deprecated public boolean isComplete();
1176 method @Deprecated public boolean isConnectionBased();
1177 …method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.aut…
1180 @Deprecated public interface AuthSchemeFactory {
1181 …method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpP…
1184 @Deprecated public final class AuthSchemeRegistry {
1185 ctor @Deprecated public AuthSchemeRegistry();
1186 …method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme(String, org.apache.http.pa…
1187 method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1188 method @Deprecated public void register(String, org.apache.http.auth.AuthSchemeFactory);
1189 …method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.auth.AuthSc…
1190 method @Deprecated public void unregister(String);
1193 @Deprecated public class AuthScope {
1194 ctor @Deprecated public AuthScope(String, int, String, String);
1195 ctor @Deprecated public AuthScope(String, int, String);
1196 ctor @Deprecated public AuthScope(String, int);
1197 ctor @Deprecated public AuthScope(org.apache.http.auth.AuthScope);
1198 method @Deprecated public String getHost();
1199 method @Deprecated public int getPort();
1200 method @Deprecated public String getRealm();
1201 method @Deprecated public String getScheme();
1202 method @Deprecated public int match(org.apache.http.auth.AuthScope);
1203 field @Deprecated public static final org.apache.http.auth.AuthScope ANY;
1204 field @Deprecated public static final String ANY_HOST;
1205 field @Deprecated public static final int ANY_PORT = -1; // 0xffffffff
1206 field @Deprecated public static final String ANY_REALM;
1207 field @Deprecated public static final String ANY_SCHEME;
1210 @Deprecated public class AuthState {
1211 ctor @Deprecated public AuthState();
1212 method @Deprecated public org.apache.http.auth.AuthScheme getAuthScheme();
1213 method @Deprecated public org.apache.http.auth.AuthScope getAuthScope();
1214 method @Deprecated public org.apache.http.auth.Credentials getCredentials();
1215 method @Deprecated public void invalidate();
1216 method @Deprecated public boolean isValid();
1217 method @Deprecated public void setAuthScheme(org.apache.http.auth.AuthScheme);
1218 method @Deprecated public void setAuthScope(org.apache.http.auth.AuthScope);
1219 method @Deprecated public void setCredentials(org.apache.http.auth.Credentials);
1222 @Deprecated public class AuthenticationException extends org.apache.http.ProtocolException {
1223 ctor @Deprecated public AuthenticationException();
1224 ctor @Deprecated public AuthenticationException(String);
1225 ctor @Deprecated public AuthenticationException(String, Throwable);
1228 @Deprecated public final class BasicUserPrincipal implements java.security.Principal {
1229 ctor @Deprecated public BasicUserPrincipal(String);
1230 method @Deprecated public boolean equals(Object);
1231 method @Deprecated public String getName();
1232 method @Deprecated public int hashCode();
1233 method @Deprecated public String toString();
1236 @Deprecated public interface Credentials {
1237 method @Deprecated public String getPassword();
1238 method @Deprecated public java.security.Principal getUserPrincipal();
1241 …@Deprecated public class InvalidCredentialsException extends org.apache.http.auth.AuthenticationEx…
1242 ctor @Deprecated public InvalidCredentialsException();
1243 ctor @Deprecated public InvalidCredentialsException(String);
1244 ctor @Deprecated public InvalidCredentialsException(String, Throwable);
1247 @Deprecated public class MalformedChallengeException extends org.apache.http.ProtocolException {
1248 ctor @Deprecated public MalformedChallengeException();
1249 ctor @Deprecated public MalformedChallengeException(String);
1250 ctor @Deprecated public MalformedChallengeException(String, Throwable);
1253 @Deprecated public class NTCredentials implements org.apache.http.auth.Credentials {
1254 ctor @Deprecated public NTCredentials(String);
1255 ctor @Deprecated public NTCredentials(String, String, String, String);
1256 method @Deprecated public String getDomain();
1257 method @Deprecated public String getPassword();
1258 method @Deprecated public String getUserName();
1259 method @Deprecated public java.security.Principal getUserPrincipal();
1260 method @Deprecated public String getWorkstation();
1263 @Deprecated public class NTUserPrincipal implements java.security.Principal {
1264 ctor @Deprecated public NTUserPrincipal(String, String);
1265 method @Deprecated public boolean equals(Object);
1266 method @Deprecated public String getDomain();
1267 method @Deprecated public String getName();
1268 method @Deprecated public String getUsername();
1269 method @Deprecated public int hashCode();
1270 method @Deprecated public String toString();
1273 @Deprecated public class UsernamePasswordCredentials implements org.apache.http.auth.Credentials {
1274 ctor @Deprecated public UsernamePasswordCredentials(String);
1275 ctor @Deprecated public UsernamePasswordCredentials(String, String);
1276 method @Deprecated public String getPassword();
1277 method @Deprecated public String getUserName();
1278 method @Deprecated public java.security.Principal getUserPrincipal();
1285 @Deprecated public interface AuthPNames {
1286 … field @Deprecated public static final String CREDENTIAL_CHARSET = "http.auth.credential-charset";
1289 @Deprecated public class AuthParamBean extends org.apache.http.params.HttpAbstractParamBean {
1290 ctor @Deprecated public AuthParamBean(org.apache.http.params.HttpParams);
1291 method @Deprecated public void setCredentialCharset(String);
1294 @Deprecated public final class AuthParams {
1295 method @Deprecated public static String getCredentialCharset(org.apache.http.params.HttpParams);
1296 …method @Deprecated public static void setCredentialCharset(org.apache.http.params.HttpParams, Stri…
1303 @Deprecated public interface AuthenticationHandler {
1304 …method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org…
1305 …method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apac…
1306 …method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.Str…
1309 …@Deprecated public class CircularRedirectException extends org.apache.http.client.RedirectExceptio…
1310 ctor @Deprecated public CircularRedirectException();
1311 ctor @Deprecated public CircularRedirectException(String);
1312 ctor @Deprecated public CircularRedirectException(String, Throwable);
1315 @Deprecated public class ClientProtocolException extends java.io.IOException {
1316 ctor @Deprecated public ClientProtocolException();
1317 ctor @Deprecated public ClientProtocolException(String);
1318 ctor @Deprecated public ClientProtocolException(Throwable);
1319 ctor @Deprecated public ClientProtocolException(String, Throwable);
1322 @Deprecated public interface CookieStore {
1323 method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
1324 method @Deprecated public void clear();
1325 method @Deprecated public boolean clearExpired(java.util.Date);
1326 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
1329 @Deprecated public interface CredentialsProvider {
1330 method @Deprecated public void clear();
1331 …method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.Aut…
1332 …method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth…
1335 @Deprecated public interface HttpClient {
1336 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.Http…
1337 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.client.methods.Http…
1338 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
1339 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
1340 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
1341 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
1342 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
1343 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
1344 method @Deprecated public org.apache.http.conn.ClientConnectionManager getConnectionManager();
1345 method @Deprecated public org.apache.http.params.HttpParams getParams();
1348 @Deprecated public interface HttpRequestRetryHandler {
1349 …method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.…
1352 …@Deprecated public class HttpResponseException extends org.apache.http.client.ClientProtocolExcept…
1353 ctor @Deprecated public HttpResponseException(int, String);
1354 method @Deprecated public int getStatusCode();
1357 @Deprecated public class NonRepeatableRequestException extends org.apache.http.ProtocolException {
1358 ctor @Deprecated public NonRepeatableRequestException();
1359 ctor @Deprecated public NonRepeatableRequestException(String);
1362 @Deprecated public class RedirectException extends org.apache.http.ProtocolException {
1363 ctor @Deprecated public RedirectException();
1364 ctor @Deprecated public RedirectException(String);
1365 ctor @Deprecated public RedirectException(String, Throwable);
1368 @Deprecated public interface RedirectHandler {
1369 …method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.htt…
1370 …method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.htt…
1373 @Deprecated public interface RequestDirector {
1374 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
1377 @Deprecated public interface ResponseHandler<T> {
1378 …method @Deprecated public T handleResponse(org.apache.http.HttpResponse) throws org.apache.http.cl…
1381 @Deprecated public interface UserTokenHandler {
1382 method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
1389 @Deprecated public class UrlEncodedFormEntity extends org.apache.http.entity.StringEntity {
1390 …ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePai…
1391 …ctor @Deprecated public UrlEncodedFormEntity(java.util.List<? extends org.apache.http.NameValuePai…
1398 @Deprecated public interface AbortableHttpRequest {
1399 method @Deprecated public void abort();
1400 …method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) …
1401 …method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) th…
1404 @Deprecated public class HttpDelete extends org.apache.http.client.methods.HttpRequestBase {
1405 ctor @Deprecated public HttpDelete();
1406 ctor @Deprecated public HttpDelete(java.net.URI);
1407 ctor @Deprecated public HttpDelete(String);
1408 method @Deprecated public String getMethod();
1409 field @Deprecated public static final String METHOD_NAME = "DELETE";
1412 …@Deprecated public abstract class HttpEntityEnclosingRequestBase extends org.apache.http.client.me…
1413 ctor @Deprecated public HttpEntityEnclosingRequestBase();
1414 method @Deprecated public boolean expectContinue();
1415 method @Deprecated public org.apache.http.HttpEntity getEntity();
1416 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
1419 @Deprecated public class HttpGet extends org.apache.http.client.methods.HttpRequestBase {
1420 ctor @Deprecated public HttpGet();
1421 ctor @Deprecated public HttpGet(java.net.URI);
1422 ctor @Deprecated public HttpGet(String);
1423 method @Deprecated public String getMethod();
1424 field @Deprecated public static final String METHOD_NAME = "GET";
1427 @Deprecated public class HttpHead extends org.apache.http.client.methods.HttpRequestBase {
1428 ctor @Deprecated public HttpHead();
1429 ctor @Deprecated public HttpHead(java.net.URI);
1430 ctor @Deprecated public HttpHead(String);
1431 method @Deprecated public String getMethod();
1432 field @Deprecated public static final String METHOD_NAME = "HEAD";
1435 @Deprecated public class HttpOptions extends org.apache.http.client.methods.HttpRequestBase {
1436 ctor @Deprecated public HttpOptions();
1437 ctor @Deprecated public HttpOptions(java.net.URI);
1438 ctor @Deprecated public HttpOptions(String);
1439 …method @Deprecated public java.util.Set<java.lang.String> getAllowedMethods(org.apache.http.HttpRe…
1440 method @Deprecated public String getMethod();
1441 field @Deprecated public static final String METHOD_NAME = "OPTIONS";
1444 …@Deprecated public class HttpPost extends org.apache.http.client.methods.HttpEntityEnclosingReques…
1445 ctor @Deprecated public HttpPost();
1446 ctor @Deprecated public HttpPost(java.net.URI);
1447 ctor @Deprecated public HttpPost(String);
1448 method @Deprecated public String getMethod();
1449 field @Deprecated public static final String METHOD_NAME = "POST";
1452 …@Deprecated public class HttpPut extends org.apache.http.client.methods.HttpEntityEnclosingRequest…
1453 ctor @Deprecated public HttpPut();
1454 ctor @Deprecated public HttpPut(java.net.URI);
1455 ctor @Deprecated public HttpPut(String);
1456 method @Deprecated public String getMethod();
1457 field @Deprecated public static final String METHOD_NAME = "PUT";
1460 …@Deprecated public abstract class HttpRequestBase extends org.apache.http.message.AbstractHttpMess…
1461 ctor @Deprecated public HttpRequestBase();
1462 method @Deprecated public void abort();
1463 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1464 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
1465 method @Deprecated public org.apache.http.RequestLine getRequestLine();
1466 method @Deprecated public java.net.URI getURI();
1467 method @Deprecated public boolean isAborted();
1468 …method @Deprecated public void setConnectionRequest(org.apache.http.conn.ClientConnectionRequest) …
1469 …method @Deprecated public void setReleaseTrigger(org.apache.http.conn.ConnectionReleaseTrigger) th…
1470 method @Deprecated public void setURI(java.net.URI);
1473 @Deprecated public class HttpTrace extends org.apache.http.client.methods.HttpRequestBase {
1474 ctor @Deprecated public HttpTrace();
1475 ctor @Deprecated public HttpTrace(java.net.URI);
1476 ctor @Deprecated public HttpTrace(String);
1477 method @Deprecated public String getMethod();
1478 field @Deprecated public static final String METHOD_NAME = "TRACE";
1481 @Deprecated public interface HttpUriRequest extends org.apache.http.HttpRequest {
1482 method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
1483 method @Deprecated public String getMethod();
1484 method @Deprecated public java.net.URI getURI();
1485 method @Deprecated public boolean isAborted();
1492 …@Deprecated public interface AllClientPNames extends org.apache.http.params.CoreConnectionPNames o…
1495 @Deprecated public final class AuthPolicy {
1496 field @Deprecated public static final String BASIC = "Basic";
1497 field @Deprecated public static final String DIGEST = "Digest";
1498 field @Deprecated public static final String NTLM = "NTLM";
1501 @Deprecated public interface ClientPNames {
1502 …field @Deprecated public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circu…
1503 …field @Deprecated public static final String CONNECTION_MANAGER_FACTORY = "http.connection-manager…
1504 …field @Deprecated public static final String CONNECTION_MANAGER_FACTORY_CLASS_NAME = "http.connect…
1505 field @Deprecated public static final String COOKIE_POLICY = "http.protocol.cookie-policy";
1506 field @Deprecated public static final String DEFAULT_HEADERS = "http.default-headers";
1507 field @Deprecated public static final String DEFAULT_HOST = "http.default-host";
1508 …field @Deprecated public static final String HANDLE_AUTHENTICATION = "http.protocol.handle-authent…
1509 … field @Deprecated public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
1510 field @Deprecated public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
1511 …field @Deprecated public static final String REJECT_RELATIVE_REDIRECT = "http.protocol.reject-rela…
1512 field @Deprecated public static final String VIRTUAL_HOST = "http.virtual-host";
1515 @Deprecated public class ClientParamBean extends org.apache.http.params.HttpAbstractParamBean {
1516 ctor @Deprecated public ClientParamBean(org.apache.http.params.HttpParams);
1517 method @Deprecated public void setAllowCircularRedirects(boolean);
1518 …method @Deprecated public void setConnectionManagerFactory(org.apache.http.conn.ClientConnectionMa…
1519 method @Deprecated public void setConnectionManagerFactoryClassName(String);
1520 method @Deprecated public void setCookiePolicy(String);
1521 method @Deprecated public void setDefaultHeaders(java.util.Collection<org.apache.http.Header>);
1522 method @Deprecated public void setDefaultHost(org.apache.http.HttpHost);
1523 method @Deprecated public void setHandleAuthentication(boolean);
1524 method @Deprecated public void setHandleRedirects(boolean);
1525 method @Deprecated public void setMaxRedirects(int);
1526 method @Deprecated public void setRejectRelativeRedirect(boolean);
1527 method @Deprecated public void setVirtualHost(org.apache.http.HttpHost);
1530 @Deprecated public final class CookiePolicy {
1531 field @Deprecated public static final String BEST_MATCH = "best-match";
1532 field @Deprecated public static final String BROWSER_COMPATIBILITY = "compatibility";
1533 field @Deprecated public static final String NETSCAPE = "netscape";
1534 field @Deprecated public static final String RFC_2109 = "rfc2109";
1535 field @Deprecated public static final String RFC_2965 = "rfc2965";
1538 @Deprecated public class HttpClientParams {
1539 method @Deprecated public static String getCookiePolicy(org.apache.http.params.HttpParams);
1540 method @Deprecated public static boolean isAuthenticating(org.apache.http.params.HttpParams);
1541 method @Deprecated public static boolean isRedirecting(org.apache.http.params.HttpParams);
1542 …method @Deprecated public static void setAuthenticating(org.apache.http.params.HttpParams, boolean…
1543 … method @Deprecated public static void setCookiePolicy(org.apache.http.params.HttpParams, String);
1544 … method @Deprecated public static void setRedirecting(org.apache.http.params.HttpParams, boolean);
1551 @Deprecated public interface ClientContext {
1552 field @Deprecated public static final String AUTHSCHEME_REGISTRY = "http.authscheme-registry";
1553 field @Deprecated public static final String AUTH_SCHEME_PREF = "http.auth.scheme-pref";
1554 field @Deprecated public static final String COOKIESPEC_REGISTRY = "http.cookiespec-registry";
1555 field @Deprecated public static final String COOKIE_ORIGIN = "http.cookie-origin";
1556 field @Deprecated public static final String COOKIE_SPEC = "http.cookie-spec";
1557 field @Deprecated public static final String COOKIE_STORE = "http.cookie-store";
1558 field @Deprecated public static final String CREDS_PROVIDER = "http.auth.credentials-provider";
1559 field @Deprecated public static final String PROXY_AUTH_STATE = "http.auth.proxy-scope";
1560 field @Deprecated public static final String TARGET_AUTH_STATE = "http.auth.target-scope";
1561 field @Deprecated public static final String USER_TOKEN = "http.user-token";
1564 …@Deprecated public class ClientContextConfigurer implements org.apache.http.client.protocol.Client…
1565 ctor @Deprecated public ClientContextConfigurer(org.apache.http.protocol.HttpContext);
1566 method @Deprecated public void setAuthSchemePref(java.util.List<java.lang.String>);
1567 method @Deprecated public void setAuthSchemeRegistry(org.apache.http.auth.AuthSchemeRegistry);
1568 method @Deprecated public void setCookieSpecRegistry(org.apache.http.cookie.CookieSpecRegistry);
1569 method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
1570 … method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
1573 @Deprecated public class RequestAddCookies implements org.apache.http.HttpRequestInterceptor {
1574 ctor @Deprecated public RequestAddCookies();
1575 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1578 @Deprecated public class RequestDefaultHeaders implements org.apache.http.HttpRequestInterceptor {
1579 ctor @Deprecated public RequestDefaultHeaders();
1580 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1583 …@Deprecated public class RequestProxyAuthentication implements org.apache.http.HttpRequestIntercep…
1584 ctor @Deprecated public RequestProxyAuthentication();
1585 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1588 …@Deprecated public class RequestTargetAuthentication implements org.apache.http.HttpRequestInterce…
1589 ctor @Deprecated public RequestTargetAuthentication();
1590 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
1593 …@Deprecated public class ResponseProcessCookies implements org.apache.http.HttpResponseInterceptor…
1594 ctor @Deprecated public ResponseProcessCookies();
1595 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
1602 @Deprecated public class CloneUtils {
1603 … method @Deprecated public static Object clone(Object) throws java.lang.CloneNotSupportedException;
1606 @Deprecated public class URIUtils {
1607 …method @Deprecated public static java.net.URI createURI(String, String, int, String, String, Strin…
1608 method @Deprecated public static java.net.URI resolve(java.net.URI, String);
1609 method @Deprecated public static java.net.URI resolve(java.net.URI, java.net.URI);
1610 …method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost, b…
1611 …method @Deprecated public static java.net.URI rewriteURI(java.net.URI, org.apache.http.HttpHost) t…
1614 @Deprecated public class URLEncodedUtils {
1615 ctor @Deprecated public URLEncodedUtils();
1616 …method @Deprecated public static String format(java.util.List<? extends org.apache.http.NameValueP…
1617 method @Deprecated public static boolean isEncoded(org.apache.http.HttpEntity);
1618 …method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(java.net.URI,…
1619 …method @Deprecated public static java.util.List<org.apache.http.NameValuePair> parse(org.apache.ht…
1620 …method @Deprecated public static void parse(java.util.List<org.apache.http.NameValuePair>, java.ut…
1621 field @Deprecated public static final String CONTENT_TYPE = "application/x-www-form-urlencoded";
1628 @Deprecated public class BasicEofSensorWatcher implements org.apache.http.conn.EofSensorWatcher {
1629 …ctor @Deprecated public BasicEofSensorWatcher(org.apache.http.conn.ManagedClientConnection, boolea…
1630 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1631 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1632 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1633 field @Deprecated protected boolean attemptReuse;
1634 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
1637 …@Deprecated public class BasicManagedEntity extends org.apache.http.entity.HttpEntityWrapper imple…
1638 …ctor @Deprecated public BasicManagedEntity(org.apache.http.HttpEntity, org.apache.http.conn.Manage…
1639 method @Deprecated public void abortConnection() throws java.io.IOException;
1640 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1641 method @Deprecated public void releaseConnection() throws java.io.IOException;
1642 method @Deprecated protected void releaseManagedConnection() throws java.io.IOException;
1643 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1644 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1645 field @Deprecated protected final boolean attemptReuse;
1646 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
1649 @Deprecated public interface ClientConnectionManager {
1650 method @Deprecated public void closeExpiredConnections();
1651 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
1652 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
1653 …method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, lon…
1654 …method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apach…
1655 method @Deprecated public void shutdown();
1658 @Deprecated public interface ClientConnectionManagerFactory {
1659 …method @Deprecated public org.apache.http.conn.ClientConnectionManager newInstance(org.apache.http…
1662 @Deprecated public interface ClientConnectionOperator {
1663 method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
1664 …method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.a…
1665 …method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnectio…
1668 @Deprecated public interface ClientConnectionRequest {
1669 method @Deprecated public void abortRequest();
1670 …method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(long, java.ut…
1673 @Deprecated public interface ConnectionKeepAliveStrategy {
1674 …method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.…
1677 …@Deprecated public class ConnectionPoolTimeoutException extends org.apache.http.conn.ConnectTimeou…
1678 ctor @Deprecated public ConnectionPoolTimeoutException();
1679 ctor @Deprecated public ConnectionPoolTimeoutException(String);
1682 @Deprecated public interface ConnectionReleaseTrigger {
1683 method @Deprecated public void abortConnection() throws java.io.IOException;
1684 method @Deprecated public void releaseConnection() throws java.io.IOException;
1687 …@Deprecated public class EofSensorInputStream extends java.io.InputStream implements org.apache.ht…
1688 …ctor @Deprecated public EofSensorInputStream(java.io.InputStream, org.apache.http.conn.EofSensorWa…
1689 method @Deprecated public void abortConnection() throws java.io.IOException;
1690 method @Deprecated protected void checkAbort() throws java.io.IOException;
1691 method @Deprecated protected void checkClose() throws java.io.IOException;
1692 method @Deprecated protected void checkEOF(int) throws java.io.IOException;
1693 method @Deprecated protected boolean isReadAllowed() throws java.io.IOException;
1694 method @Deprecated public int read() throws java.io.IOException;
1695 method @Deprecated public void releaseConnection() throws java.io.IOException;
1696 field @Deprecated protected java.io.InputStream wrappedStream;
1699 @Deprecated public interface EofSensorWatcher {
1700 method @Deprecated public boolean eofDetected(java.io.InputStream) throws java.io.IOException;
1701 method @Deprecated public boolean streamAbort(java.io.InputStream) throws java.io.IOException;
1702 method @Deprecated public boolean streamClosed(java.io.InputStream) throws java.io.IOException;
1705 @Deprecated public class HttpHostConnectException extends java.net.ConnectException {
1706 …ctor @Deprecated public HttpHostConnectException(org.apache.http.HttpHost, java.net.ConnectExcepti…
1707 method @Deprecated public org.apache.http.HttpHost getHost();
1710 …@Deprecated public interface ManagedClientConnection extends org.apache.http.HttpClientConnection …
1711 method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
1712 method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
1713 method @Deprecated public Object getState();
1714 method @Deprecated public boolean isMarkedReusable();
1715 method @Deprecated public boolean isSecure();
1716 …method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http…
1717 method @Deprecated public void markReusable();
1718 …method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protoc…
1719 method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
1720 method @Deprecated public void setState(Object);
1721 …method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.para…
1722 …method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws jav…
1723 method @Deprecated public void unmarkReusable();
1726 …@Deprecated public final class MultihomePlainSocketFactory implements org.apache.http.conn.scheme.…
1727 …method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.Ine…
1728 method @Deprecated public java.net.Socket createSocket();
1729 …method @Deprecated public static org.apache.http.conn.MultihomePlainSocketFactory getSocketFactory…
1730 …method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentExcept…
1733 …@Deprecated public interface OperatedClientConnection extends org.apache.http.HttpClientConnection…
1734 method @Deprecated public java.net.Socket getSocket();
1735 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1736 method @Deprecated public boolean isSecure();
1737 …method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws ja…
1738 …method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.I…
1739 …method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apac…
1746 @Deprecated public interface ConnConnectionPNames {
1747 …field @Deprecated public static final String MAX_STATUS_LINE_GARBAGE = "http.connection.max-status…
1750 …@Deprecated public class ConnConnectionParamBean extends org.apache.http.params.HttpAbstractParamB…
1751 ctor @Deprecated public ConnConnectionParamBean(org.apache.http.params.HttpParams);
1752 method @Deprecated public void setMaxStatusLineGarbage(int);
1755 @Deprecated public interface ConnManagerPNames {
1756 …field @Deprecated public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-pe…
1757 …field @Deprecated public static final String MAX_TOTAL_CONNECTIONS = "http.conn-manager.max-total";
1758 field @Deprecated public static final String TIMEOUT = "http.conn-manager.timeout";
1761 …@Deprecated public class ConnManagerParamBean extends org.apache.http.params.HttpAbstractParamBean…
1762 ctor @Deprecated public ConnManagerParamBean(org.apache.http.params.HttpParams);
1763 …method @Deprecated public void setConnectionsPerRoute(org.apache.http.conn.params.ConnPerRouteBean…
1764 method @Deprecated public void setMaxTotalConnections(int);
1765 method @Deprecated public void setTimeout(long);
1768 …@Deprecated public final class ConnManagerParams implements org.apache.http.conn.params.ConnManage…
1769 ctor @Deprecated public ConnManagerParams();
1770 …method @Deprecated public static org.apache.http.conn.params.ConnPerRoute getMaxConnectionsPerRout…
1771 method @Deprecated public static int getMaxTotalConnections(org.apache.http.params.HttpParams);
1772 method @Deprecated public static long getTimeout(org.apache.http.params.HttpParams);
1773 …method @Deprecated public static void setMaxConnectionsPerRoute(org.apache.http.params.HttpParams,…
1774 …method @Deprecated public static void setMaxTotalConnections(org.apache.http.params.HttpParams, in…
1775 method @Deprecated public static void setTimeout(org.apache.http.params.HttpParams, long);
1776 field @Deprecated public static final int DEFAULT_MAX_TOTAL_CONNECTIONS = 20; // 0x14
1779 @Deprecated public interface ConnPerRoute {
1780 method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1783 …@Deprecated public final class ConnPerRouteBean implements org.apache.http.conn.params.ConnPerRout…
1784 ctor @Deprecated public ConnPerRouteBean(int);
1785 ctor @Deprecated public ConnPerRouteBean();
1786 method @Deprecated public int getDefaultMax();
1787 method @Deprecated public int getMaxForRoute(org.apache.http.conn.routing.HttpRoute);
1788 method @Deprecated public void setDefaultMaxPerRoute(int);
1789 method @Deprecated public void setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int);
1790 …method @Deprecated public void setMaxForRoutes(java.util.Map<org.apache.http.conn.routing.HttpRout…
1791 field @Deprecated public static final int DEFAULT_MAX_CONNECTIONS_PER_ROUTE = 2; // 0x2
1794 @Deprecated public interface ConnRoutePNames {
1795 field @Deprecated public static final String DEFAULT_PROXY = "http.route.default-proxy";
1796 field @Deprecated public static final String FORCED_ROUTE = "http.route.forced-route";
1797 field @Deprecated public static final String LOCAL_ADDRESS = "http.route.local-address";
1800 @Deprecated public class ConnRouteParamBean extends org.apache.http.params.HttpAbstractParamBean {
1801 ctor @Deprecated public ConnRouteParamBean(org.apache.http.params.HttpParams);
1802 method @Deprecated public void setDefaultProxy(org.apache.http.HttpHost);
1803 method @Deprecated public void setForcedRoute(org.apache.http.conn.routing.HttpRoute);
1804 method @Deprecated public void setLocalAddress(java.net.InetAddress);
1807 @Deprecated public class ConnRouteParams implements org.apache.http.conn.params.ConnRoutePNames {
1808 …method @Deprecated public static org.apache.http.HttpHost getDefaultProxy(org.apache.http.params.H…
1809 …method @Deprecated public static org.apache.http.conn.routing.HttpRoute getForcedRoute(org.apache.…
1810 …method @Deprecated public static java.net.InetAddress getLocalAddress(org.apache.http.params.HttpP…
1811 …method @Deprecated public static void setDefaultProxy(org.apache.http.params.HttpParams, org.apach…
1812 …method @Deprecated public static void setForcedRoute(org.apache.http.params.HttpParams, org.apache…
1813 …method @Deprecated public static void setLocalAddress(org.apache.http.params.HttpParams, java.net.…
1814 field @Deprecated public static final org.apache.http.HttpHost NO_HOST;
1815 field @Deprecated public static final org.apache.http.conn.routing.HttpRoute NO_ROUTE;
1822 …@Deprecated public class BasicRouteDirector implements org.apache.http.conn.routing.HttpRouteDirec…
1823 ctor @Deprecated public BasicRouteDirector();
1824 …method @Deprecated protected int directStep(org.apache.http.conn.routing.RouteInfo, org.apache.htt…
1825 method @Deprecated protected int firstStep(org.apache.http.conn.routing.RouteInfo);
1826 …method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.con…
1827 …method @Deprecated protected int proxiedStep(org.apache.http.conn.routing.RouteInfo, org.apache.ht…
1830 …@Deprecated public final class HttpRoute implements java.lang.Cloneable org.apache.http.conn.routi…
1831 …ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.…
1832 …ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.…
1833 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, boolean);
1834 ctor @Deprecated public HttpRoute(org.apache.http.HttpHost);
1835 …ctor @Deprecated public HttpRoute(org.apache.http.HttpHost, java.net.InetAddress, org.apache.http.…
1836 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1837 method @Deprecated public int getHopCount();
1838 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1839 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1840 method @Deprecated public java.net.InetAddress getLocalAddress();
1841 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1842 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1843 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1844 method @Deprecated public boolean isLayered();
1845 method @Deprecated public boolean isSecure();
1846 method @Deprecated public boolean isTunnelled();
1849 @Deprecated public interface HttpRouteDirector {
1850 …method @Deprecated public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.con…
1851 field @Deprecated public static final int COMPLETE = 0; // 0x0
1852 field @Deprecated public static final int CONNECT_PROXY = 2; // 0x2
1853 field @Deprecated public static final int CONNECT_TARGET = 1; // 0x1
1854 field @Deprecated public static final int LAYER_PROTOCOL = 5; // 0x5
1855 field @Deprecated public static final int TUNNEL_PROXY = 4; // 0x4
1856 field @Deprecated public static final int TUNNEL_TARGET = 3; // 0x3
1857 field @Deprecated public static final int UNREACHABLE = -1; // 0xffffffff
1860 @Deprecated public interface HttpRoutePlanner {
1861 …method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.Ht…
1864 @Deprecated public interface RouteInfo {
1865 method @Deprecated public int getHopCount();
1866 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1867 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1868 method @Deprecated public java.net.InetAddress getLocalAddress();
1869 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1870 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1871 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1872 method @Deprecated public boolean isLayered();
1873 method @Deprecated public boolean isSecure();
1874 method @Deprecated public boolean isTunnelled();
1877 @Deprecated public enum RouteInfo.LayerType {
1878 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType LAY…
1879 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.LayerType PLA…
1882 @Deprecated public enum RouteInfo.TunnelType {
1883 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType PL…
1884 …enum_constant @Deprecated public static final org.apache.http.conn.routing.RouteInfo.TunnelType TU…
1887 …@Deprecated public final class RouteTracker implements java.lang.Cloneable org.apache.http.conn.ro…
1888 ctor @Deprecated public RouteTracker(org.apache.http.HttpHost, java.net.InetAddress);
1889 ctor @Deprecated public RouteTracker(org.apache.http.conn.routing.HttpRoute);
1890 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
1891 method @Deprecated public void connectProxy(org.apache.http.HttpHost, boolean);
1892 method @Deprecated public void connectTarget(boolean);
1893 method @Deprecated public int getHopCount();
1894 method @Deprecated public org.apache.http.HttpHost getHopTarget(int);
1895 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1896 method @Deprecated public java.net.InetAddress getLocalAddress();
1897 method @Deprecated public org.apache.http.HttpHost getProxyHost();
1898 method @Deprecated public org.apache.http.HttpHost getTargetHost();
1899 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1900 method @Deprecated public boolean isConnected();
1901 method @Deprecated public boolean isLayered();
1902 method @Deprecated public boolean isSecure();
1903 method @Deprecated public boolean isTunnelled();
1904 method @Deprecated public void layerProtocol(boolean);
1905 method @Deprecated public org.apache.http.conn.routing.HttpRoute toRoute();
1906 method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean);
1907 method @Deprecated public void tunnelTarget(boolean);
1914 …@Deprecated public final class PlainSocketFactory implements org.apache.http.conn.scheme.SocketFac…
1915 ctor @Deprecated public PlainSocketFactory(org.apache.http.conn.scheme.HostNameResolver);
1916 ctor @Deprecated public PlainSocketFactory();
1917 …method @Deprecated public java.net.Socket connectSocket(java.net.Socket, String, int, java.net.Ine…
1918 method @Deprecated public java.net.Socket createSocket();
1919 …method @Deprecated public static org.apache.http.conn.scheme.PlainSocketFactory getSocketFactory();
1920 …method @Deprecated public boolean isSecure(java.net.Socket) throws java.lang.IllegalArgumentExcept…
1923 @Deprecated public final class Scheme {
1924 ctor @Deprecated public Scheme(String, org.apache.http.conn.scheme.SocketFactory, int);
1925 method @Deprecated public int getDefaultPort();
1926 method @Deprecated public String getName();
1927 method @Deprecated public org.apache.http.conn.scheme.SocketFactory getSocketFactory();
1928 method @Deprecated public boolean isLayered();
1929 method @Deprecated public int resolvePort(int);
1932 @Deprecated public final class SchemeRegistry {
1933 ctor @Deprecated public SchemeRegistry();
1934 method @Deprecated public org.apache.http.conn.scheme.Scheme get(String);
1935 method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(String);
1936 … method @Deprecated public org.apache.http.conn.scheme.Scheme getScheme(org.apache.http.HttpHost);
1937 method @Deprecated public java.util.List<java.lang.String> getSchemeNames();
1938 …method @Deprecated public org.apache.http.conn.scheme.Scheme register(org.apache.http.conn.scheme.…
1939 …method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.conn.scheme…
1940 method @Deprecated public org.apache.http.conn.scheme.Scheme unregister(String);
1947 @Deprecated public class InetAddressUtils {
1948 method @Deprecated public static boolean isIPv4Address(String);
1949 method @Deprecated public static boolean isIPv6Address(String);
1950 method @Deprecated public static boolean isIPv6HexCompressedAddress(String);
1951 method @Deprecated public static boolean isIPv6StdAddress(String);
1958 @Deprecated public interface ClientCookie extends org.apache.http.cookie.Cookie {
1959 method @Deprecated public boolean containsAttribute(String);
1960 method @Deprecated public String getAttribute(String);
1961 field @Deprecated public static final String COMMENTURL_ATTR = "commenturl";
1962 field @Deprecated public static final String COMMENT_ATTR = "comment";
1963 field @Deprecated public static final String DISCARD_ATTR = "discard";
1964 field @Deprecated public static final String DOMAIN_ATTR = "domain";
1965 field @Deprecated public static final String EXPIRES_ATTR = "expires";
1966 field @Deprecated public static final String MAX_AGE_ATTR = "max-age";
1967 field @Deprecated public static final String PATH_ATTR = "path";
1968 field @Deprecated public static final String PORT_ATTR = "port";
1969 field @Deprecated public static final String SECURE_ATTR = "secure";
1970 field @Deprecated public static final String VERSION_ATTR = "version";
1973 @Deprecated public interface Cookie {
1974 method @Deprecated public String getComment();
1975 method @Deprecated public String getCommentURL();
1976 method @Deprecated public String getDomain();
1977 method @Deprecated public java.util.Date getExpiryDate();
1978 method @Deprecated public String getName();
1979 method @Deprecated public String getPath();
1980 method @Deprecated public int[] getPorts();
1981 method @Deprecated public String getValue();
1982 method @Deprecated public int getVersion();
1983 method @Deprecated public boolean isExpired(java.util.Date);
1984 method @Deprecated public boolean isPersistent();
1985 method @Deprecated public boolean isSecure();
1988 @Deprecated public interface CookieAttributeHandler {
1989 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
1990 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
1991 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
1994 …@Deprecated public class CookieIdentityComparator implements java.util.Comparator<org.apache.http.…
1995 ctor @Deprecated public CookieIdentityComparator();
1996 …method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie…
1999 @Deprecated public final class CookieOrigin {
2000 ctor @Deprecated public CookieOrigin(String, int, String, boolean);
2001 method @Deprecated public String getHost();
2002 method @Deprecated public String getPath();
2003 method @Deprecated public int getPort();
2004 method @Deprecated public boolean isSecure();
2007 …@Deprecated public class CookiePathComparator implements java.util.Comparator<org.apache.http.cook…
2008 ctor @Deprecated public CookiePathComparator();
2009 …method @Deprecated public int compare(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cookie…
2012 @Deprecated public interface CookieSpec {
2013 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
2014 method @Deprecated public int getVersion();
2015 method @Deprecated public org.apache.http.Header getVersionHeader();
2016 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
2017 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
2018 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
2021 @Deprecated public interface CookieSpecFactory {
2022 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
2025 @Deprecated public final class CookieSpecRegistry {
2026 ctor @Deprecated public CookieSpecRegistry();
2027 …method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String, org.apache.http.…
2028 …method @Deprecated public org.apache.http.cookie.CookieSpec getCookieSpec(String) throws java.lang…
2029 method @Deprecated public java.util.List<java.lang.String> getSpecNames();
2030 method @Deprecated public void register(String, org.apache.http.cookie.CookieSpecFactory);
2031 …method @Deprecated public void setItems(java.util.Map<java.lang.String,org.apache.http.cookie.Cook…
2032 method @Deprecated public void unregister(String);
2035 @Deprecated public class MalformedCookieException extends org.apache.http.ProtocolException {
2036 ctor @Deprecated public MalformedCookieException();
2037 ctor @Deprecated public MalformedCookieException(String);
2038 ctor @Deprecated public MalformedCookieException(String, Throwable);
2041 @Deprecated public interface SM {
2042 field @Deprecated public static final String COOKIE = "Cookie";
2043 field @Deprecated public static final String COOKIE2 = "Cookie2";
2044 field @Deprecated public static final String SET_COOKIE = "Set-Cookie";
2045 field @Deprecated public static final String SET_COOKIE2 = "Set-Cookie2";
2048 @Deprecated public interface SetCookie extends org.apache.http.cookie.Cookie {
2049 method @Deprecated public void setComment(String);
2050 method @Deprecated public void setDomain(String);
2051 method @Deprecated public void setExpiryDate(java.util.Date);
2052 method @Deprecated public void setPath(String);
2053 method @Deprecated public void setSecure(boolean);
2054 method @Deprecated public void setValue(String);
2055 method @Deprecated public void setVersion(int);
2058 @Deprecated public interface SetCookie2 extends org.apache.http.cookie.SetCookie {
2059 method @Deprecated public void setCommentURL(String);
2060 method @Deprecated public void setDiscard(boolean);
2061 method @Deprecated public void setPorts(int[]);
2068 @Deprecated public interface CookieSpecPNames {
2069 … field @Deprecated public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
2070 …field @Deprecated public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-h…
2073 …@Deprecated public class CookieSpecParamBean extends org.apache.http.params.HttpAbstractParamBean {
2074 ctor @Deprecated public CookieSpecParamBean(org.apache.http.params.HttpParams);
2075 method @Deprecated public void setDatePatterns(java.util.Collection<java.lang.String>);
2076 method @Deprecated public void setSingleHeader(boolean);
2083 @Deprecated public abstract class AbstractHttpEntity implements org.apache.http.HttpEntity {
2084 ctor @Deprecated protected AbstractHttpEntity();
2085 …method @Deprecated public void consumeContent() throws java.io.IOException, java.lang.UnsupportedO…
2086 method @Deprecated public org.apache.http.Header getContentEncoding();
2087 method @Deprecated public org.apache.http.Header getContentType();
2088 method @Deprecated public boolean isChunked();
2089 method @Deprecated public void setChunked(boolean);
2090 method @Deprecated public void setContentEncoding(org.apache.http.Header);
2091 method @Deprecated public void setContentEncoding(String);
2092 method @Deprecated public void setContentType(org.apache.http.Header);
2093 method @Deprecated public void setContentType(String);
2094 field @Deprecated protected boolean chunked;
2095 field @Deprecated protected org.apache.http.Header contentEncoding;
2096 field @Deprecated protected org.apache.http.Header contentType;
2099 @Deprecated public class BasicHttpEntity extends org.apache.http.entity.AbstractHttpEntity {
2100 ctor @Deprecated public BasicHttpEntity();
2101 method @Deprecated public void consumeContent() throws java.io.IOException;
2102 … method @Deprecated public java.io.InputStream getContent() throws java.lang.IllegalStateException;
2103 method @Deprecated public long getContentLength();
2104 method @Deprecated public boolean isRepeatable();
2105 method @Deprecated public boolean isStreaming();
2106 method @Deprecated public void setContent(java.io.InputStream);
2107 method @Deprecated public void setContentLength(long);
2108 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2111 @Deprecated public class BufferedHttpEntity extends org.apache.http.entity.HttpEntityWrapper {
2112 … ctor @Deprecated public BufferedHttpEntity(org.apache.http.HttpEntity) throws java.io.IOException;
2115 …@Deprecated public class ByteArrayEntity extends org.apache.http.entity.AbstractHttpEntity impleme…
2116 ctor @Deprecated public ByteArrayEntity(byte[]);
2117 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2118 method @Deprecated public java.io.InputStream getContent();
2119 method @Deprecated public long getContentLength();
2120 method @Deprecated public boolean isRepeatable();
2121 method @Deprecated public boolean isStreaming();
2122 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2123 field @Deprecated protected final byte[] content;
2126 @Deprecated public interface ContentLengthStrategy {
2127 …method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http…
2128 field @Deprecated public static final int CHUNKED = -2; // 0xfffffffe
2129 field @Deprecated public static final int IDENTITY = -1; // 0xffffffff
2132 @Deprecated public interface ContentProducer {
2133 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2136 @Deprecated public class EntityTemplate extends org.apache.http.entity.AbstractHttpEntity {
2137 ctor @Deprecated public EntityTemplate(org.apache.http.entity.ContentProducer);
2138 method @Deprecated public void consumeContent() throws java.io.IOException;
2139 method @Deprecated public java.io.InputStream getContent();
2140 method @Deprecated public long getContentLength();
2141 method @Deprecated public boolean isRepeatable();
2142 method @Deprecated public boolean isStreaming();
2143 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2146 …@Deprecated public class FileEntity extends org.apache.http.entity.AbstractHttpEntity implements j…
2147 ctor @Deprecated public FileEntity(java.io.File, String);
2148 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2149 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2150 method @Deprecated public long getContentLength();
2151 method @Deprecated public boolean isRepeatable();
2152 method @Deprecated public boolean isStreaming();
2153 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2154 field @Deprecated protected final java.io.File file;
2157 @Deprecated public class HttpEntityWrapper implements org.apache.http.HttpEntity {
2158 ctor @Deprecated public HttpEntityWrapper(org.apache.http.HttpEntity);
2159 method @Deprecated public void consumeContent() throws java.io.IOException;
2160 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2161 method @Deprecated public org.apache.http.Header getContentEncoding();
2162 method @Deprecated public long getContentLength();
2163 method @Deprecated public org.apache.http.Header getContentType();
2164 method @Deprecated public boolean isChunked();
2165 method @Deprecated public boolean isRepeatable();
2166 method @Deprecated public boolean isStreaming();
2167 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2168 field @Deprecated protected org.apache.http.HttpEntity wrappedEntity;
2171 @Deprecated public class InputStreamEntity extends org.apache.http.entity.AbstractHttpEntity {
2172 ctor @Deprecated public InputStreamEntity(java.io.InputStream, long);
2173 method @Deprecated public void consumeContent() throws java.io.IOException;
2174 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2175 method @Deprecated public long getContentLength();
2176 method @Deprecated public boolean isRepeatable();
2177 method @Deprecated public boolean isStreaming();
2178 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2181 @Deprecated public class SerializableEntity extends org.apache.http.entity.AbstractHttpEntity {
2182 …ctor @Deprecated public SerializableEntity(java.io.Serializable, boolean) throws java.io.IOExcepti…
2183 …method @Deprecated public java.io.InputStream getContent() throws java.io.IOException, java.lang.I…
2184 method @Deprecated public long getContentLength();
2185 method @Deprecated public boolean isRepeatable();
2186 method @Deprecated public boolean isStreaming();
2187 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2190 …@Deprecated public class StringEntity extends org.apache.http.entity.AbstractHttpEntity implements…
2191 … ctor @Deprecated public StringEntity(String, String) throws java.io.UnsupportedEncodingException;
2192 ctor @Deprecated public StringEntity(String) throws java.io.UnsupportedEncodingException;
2193 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
2194 method @Deprecated public java.io.InputStream getContent() throws java.io.IOException;
2195 method @Deprecated public long getContentLength();
2196 method @Deprecated public boolean isRepeatable();
2197 method @Deprecated public boolean isStreaming();
2198 method @Deprecated public void writeTo(java.io.OutputStream) throws java.io.IOException;
2199 field @Deprecated protected final byte[] content;
2206 …@Deprecated public abstract class AbstractHttpClientConnection implements org.apache.http.HttpClie…
2207 ctor @Deprecated public AbstractHttpClientConnection();
2208 method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2209 …method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializ…
2210 …method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2211 method @Deprecated protected org.apache.http.HttpResponseFactory createHttpResponseFactory();
2212 …method @Deprecated protected org.apache.http.io.HttpMessageWriter createRequestWriter(org.apache.h…
2213 …method @Deprecated protected org.apache.http.io.HttpMessageParser createResponseParser(org.apache.…
2214 method @Deprecated protected void doFlush() throws java.io.IOException;
2215 method @Deprecated public void flush() throws java.io.IOException;
2216 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2217 …method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.S…
2218 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2219 method @Deprecated public boolean isStale();
2220 …method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apac…
2221 …method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.h…
2222 …method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throw…
2223 …method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.ht…
2226 …@Deprecated public abstract class AbstractHttpServerConnection implements org.apache.http.HttpServ…
2227 ctor @Deprecated public AbstractHttpServerConnection();
2228 method @Deprecated protected abstract void assertOpen() throws java.lang.IllegalStateException;
2229 …method @Deprecated protected org.apache.http.impl.entity.EntityDeserializer createEntityDeserializ…
2230 …method @Deprecated protected org.apache.http.impl.entity.EntitySerializer createEntitySerializer();
2231 method @Deprecated protected org.apache.http.HttpRequestFactory createHttpRequestFactory();
2232 …method @Deprecated protected org.apache.http.io.HttpMessageParser createRequestParser(org.apache.h…
2233 …method @Deprecated protected org.apache.http.io.HttpMessageWriter createResponseWriter(org.apache.…
2234 method @Deprecated protected void doFlush() throws java.io.IOException;
2235 method @Deprecated public void flush() throws java.io.IOException;
2236 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2237 …method @Deprecated protected void init(org.apache.http.io.SessionInputBuffer, org.apache.http.io.S…
2238 method @Deprecated public boolean isStale();
2239 …method @Deprecated public void receiveRequestEntity(org.apache.http.HttpEntityEnclosingRequest) th…
2240 …method @Deprecated public org.apache.http.HttpRequest receiveRequestHeader() throws org.apache.htt…
2241 …method @Deprecated public void sendResponseEntity(org.apache.http.HttpResponse) throws org.apache.…
2242 …method @Deprecated public void sendResponseHeader(org.apache.http.HttpResponse) throws org.apache.…
2245 …@Deprecated public class DefaultConnectionReuseStrategy implements org.apache.http.ConnectionReuse…
2246 ctor @Deprecated public DefaultConnectionReuseStrategy();
2247 …method @Deprecated protected org.apache.http.TokenIterator createTokenIterator(org.apache.http.Hea…
2248 …method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol…
2251 …@Deprecated public class DefaultHttpClientConnection extends org.apache.http.impl.SocketHttpClient…
2252 ctor @Deprecated public DefaultHttpClientConnection();
2253 …method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws jav…
2256 @Deprecated public class DefaultHttpRequestFactory implements org.apache.http.HttpRequestFactory {
2257 ctor @Deprecated public DefaultHttpRequestFactory();
2258 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(org.apache.http.RequestLine) …
2259 …method @Deprecated public org.apache.http.HttpRequest newHttpRequest(String, String) throws org.ap…
2262 …@Deprecated public class DefaultHttpResponseFactory implements org.apache.http.HttpResponseFactory…
2263 ctor @Deprecated public DefaultHttpResponseFactory(org.apache.http.ReasonPhraseCatalog);
2264 ctor @Deprecated public DefaultHttpResponseFactory();
2265 …method @Deprecated protected java.util.Locale determineLocale(org.apache.http.protocol.HttpContext…
2266 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.ProtocolVer…
2267 …method @Deprecated public org.apache.http.HttpResponse newHttpResponse(org.apache.http.StatusLine,…
2268 field @Deprecated protected final org.apache.http.ReasonPhraseCatalog reasonCatalog;
2271 …@Deprecated public class DefaultHttpServerConnection extends org.apache.http.impl.SocketHttpServer…
2272 ctor @Deprecated public DefaultHttpServerConnection();
2273 …method @Deprecated public void bind(java.net.Socket, org.apache.http.params.HttpParams) throws jav…
2276 …@Deprecated public class EnglishReasonPhraseCatalog implements org.apache.http.ReasonPhraseCatalog…
2277 ctor @Deprecated protected EnglishReasonPhraseCatalog();
2278 method @Deprecated public String getReason(int, java.util.Locale);
2279 field @Deprecated public static final org.apache.http.impl.EnglishReasonPhraseCatalog INSTANCE;
2282 …@Deprecated public class HttpConnectionMetricsImpl implements org.apache.http.HttpConnectionMetric…
2283 …ctor @Deprecated public HttpConnectionMetricsImpl(org.apache.http.io.HttpTransportMetrics, org.apa…
2284 method @Deprecated public Object getMetric(String);
2285 method @Deprecated public long getReceivedBytesCount();
2286 method @Deprecated public long getRequestCount();
2287 method @Deprecated public long getResponseCount();
2288 method @Deprecated public long getSentBytesCount();
2289 method @Deprecated public void incrementRequestCount();
2290 method @Deprecated public void incrementResponseCount();
2291 method @Deprecated public void reset();
2292 method @Deprecated public void setMetric(String, Object);
2293 field @Deprecated public static final String RECEIVED_BYTES_COUNT = "http.received-bytes-count";
2294 field @Deprecated public static final String REQUEST_COUNT = "http.request-count";
2295 field @Deprecated public static final String RESPONSE_COUNT = "http.response-count";
2296 field @Deprecated public static final String SENT_BYTES_COUNT = "http.sent-bytes-count";
2299 …@Deprecated public class NoConnectionReuseStrategy implements org.apache.http.ConnectionReuseStrat…
2300 ctor @Deprecated public NoConnectionReuseStrategy();
2301 …method @Deprecated public boolean keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol…
2304 …@Deprecated public class SocketHttpClientConnection extends org.apache.http.impl.AbstractHttpClien…
2305 ctor @Deprecated public SocketHttpClientConnection();
2306 method @Deprecated protected void assertNotOpen();
2307 method @Deprecated protected void assertOpen();
2308 …method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws …
2309 method @Deprecated public void close() throws java.io.IOException;
2310 …method @Deprecated protected org.apache.http.io.SessionInputBuffer createSessionInputBuffer(java.n…
2311 …method @Deprecated protected org.apache.http.io.SessionOutputBuffer createSessionOutputBuffer(java…
2312 method @Deprecated public java.net.InetAddress getLocalAddress();
2313 method @Deprecated public int getLocalPort();
2314 method @Deprecated public java.net.InetAddress getRemoteAddress();
2315 method @Deprecated public int getRemotePort();
2316 method @Deprecated protected java.net.Socket getSocket();
2317 method @Deprecated public int getSocketTimeout();
2318 method @Deprecated public boolean isOpen();
2319 method @Deprecated public void setSocketTimeout(int);
2320 method @Deprecated public void shutdown() throws java.io.IOException;
2323 …@Deprecated public class SocketHttpServerConnection extends org.apache.http.impl.AbstractHttpServe…
2324 ctor @Deprecated public SocketHttpServerConnection();
2325 method @Deprecated protected void assertNotOpen();
2326 method @Deprecated protected void assertOpen();
2327 …method @Deprecated protected void bind(java.net.Socket, org.apache.http.params.HttpParams) throws …
2328 method @Deprecated public void close() throws java.io.IOException;
2329 …method @Deprecated protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net…
2330 …method @Deprecated protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java…
2331 method @Deprecated public java.net.InetAddress getLocalAddress();
2332 method @Deprecated public int getLocalPort();
2333 method @Deprecated public java.net.InetAddress getRemoteAddress();
2334 method @Deprecated public int getRemotePort();
2335 method @Deprecated protected java.net.Socket getSocket();
2336 method @Deprecated public int getSocketTimeout();
2337 method @Deprecated public boolean isOpen();
2338 method @Deprecated public void setSocketTimeout(int);
2339 method @Deprecated public void shutdown() throws java.io.IOException;
2346 @Deprecated public abstract class AuthSchemeBase implements org.apache.http.auth.AuthScheme {
2347 ctor @Deprecated public AuthSchemeBase();
2348 method @Deprecated public boolean isProxy();
2349 …method @Deprecated protected abstract void parseChallenge(org.apache.http.util.CharArrayBuffer, in…
2350 …method @Deprecated public void processChallenge(org.apache.http.Header) throws org.apache.http.aut…
2353 @Deprecated public class BasicScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2354 ctor @Deprecated public BasicScheme();
2355 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
2356 …method @Deprecated public static org.apache.http.Header authenticate(org.apache.http.auth.Credenti…
2357 method @Deprecated public String getSchemeName();
2358 method @Deprecated public boolean isComplete();
2359 method @Deprecated public boolean isConnectionBased();
2362 @Deprecated public class BasicSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2363 ctor @Deprecated public BasicSchemeFactory();
2364 …method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpP…
2367 @Deprecated public class DigestScheme extends org.apache.http.impl.auth.RFC2617Scheme {
2368 ctor @Deprecated public DigestScheme();
2369 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
2370 method @Deprecated public static String createCnonce();
2371 method @Deprecated public String getSchemeName();
2372 method @Deprecated public boolean isComplete();
2373 method @Deprecated public boolean isConnectionBased();
2374 method @Deprecated public void overrideParamter(String, String);
2377 @Deprecated public class DigestSchemeFactory implements org.apache.http.auth.AuthSchemeFactory {
2378 ctor @Deprecated public DigestSchemeFactory();
2379 …method @Deprecated public org.apache.http.auth.AuthScheme newInstance(org.apache.http.params.HttpP…
2382 @Deprecated public interface NTLMEngine {
2383 …method @Deprecated public String generateType1Msg(String, String) throws org.apache.http.impl.auth…
2384 …method @Deprecated public String generateType3Msg(String, String, String, String, String) throws o…
2387 …@Deprecated public class NTLMEngineException extends org.apache.http.auth.AuthenticationException {
2388 ctor @Deprecated public NTLMEngineException();
2389 ctor @Deprecated public NTLMEngineException(String);
2390 ctor @Deprecated public NTLMEngineException(String, Throwable);
2393 @Deprecated public class NTLMScheme extends org.apache.http.impl.auth.AuthSchemeBase {
2394 ctor @Deprecated public NTLMScheme(org.apache.http.impl.auth.NTLMEngine);
2395 …method @Deprecated public org.apache.http.Header authenticate(org.apache.http.auth.Credentials, or…
2396 method @Deprecated public String getParameter(String);
2397 method @Deprecated public String getRealm();
2398 method @Deprecated public String getSchemeName();
2399 method @Deprecated public boolean isComplete();
2400 method @Deprecated public boolean isConnectionBased();
2401 …method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) t…
2404 @Deprecated public abstract class RFC2617Scheme extends org.apache.http.impl.auth.AuthSchemeBase {
2405 ctor @Deprecated public RFC2617Scheme();
2406 method @Deprecated public String getParameter(String);
2407 method @Deprecated protected java.util.Map<java.lang.String,java.lang.String> getParameters();
2408 method @Deprecated public String getRealm();
2409 …method @Deprecated protected void parseChallenge(org.apache.http.util.CharArrayBuffer, int, int) t…
2412 @Deprecated public class UnsupportedDigestAlgorithmException extends java.lang.RuntimeException {
2413 ctor @Deprecated public UnsupportedDigestAlgorithmException();
2414 ctor @Deprecated public UnsupportedDigestAlgorithmException(String);
2415 ctor @Deprecated public UnsupportedDigestAlgorithmException(String, Throwable);
2422 …@Deprecated public abstract class AbstractAuthenticationHandler implements org.apache.http.client.…
2423 ctor @Deprecated public AbstractAuthenticationHandler();
2424 method @Deprecated protected java.util.List<java.lang.String> getAuthPreferences();
2425 …method @Deprecated protected java.util.Map<java.lang.String,org.apache.http.Header> parseChallenge…
2426 …method @Deprecated public org.apache.http.auth.AuthScheme selectScheme(java.util.Map<java.lang.Str…
2429 …@Deprecated public abstract class AbstractHttpClient implements org.apache.http.client.HttpClient {
2430 …ctor @Deprecated protected AbstractHttpClient(org.apache.http.conn.ClientConnectionManager, org.ap…
2431 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
2432 … method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
2433 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
2434 …method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int…
2435 method @Deprecated public void clearRequestInterceptors();
2436 method @Deprecated public void clearResponseInterceptors();
2437 …method @Deprecated protected abstract org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegi…
2438 …method @Deprecated protected abstract org.apache.http.conn.ClientConnectionManager createClientCon…
2439 …method @Deprecated protected org.apache.http.client.RequestDirector createClientRequestDirector(or…
2440 …method @Deprecated protected abstract org.apache.http.conn.ConnectionKeepAliveStrategy createConne…
2441 …method @Deprecated protected abstract org.apache.http.ConnectionReuseStrategy createConnectionReus…
2442 …method @Deprecated protected abstract org.apache.http.cookie.CookieSpecRegistry createCookieSpecRe…
2443 method @Deprecated protected abstract org.apache.http.client.CookieStore createCookieStore();
2444 …method @Deprecated protected abstract org.apache.http.client.CredentialsProvider createCredentials…
2445 method @Deprecated protected abstract org.apache.http.protocol.HttpContext createHttpContext();
2446 method @Deprecated protected abstract org.apache.http.params.HttpParams createHttpParams();
2447 …method @Deprecated protected abstract org.apache.http.protocol.BasicHttpProcessor createHttpProces…
2448 …method @Deprecated protected abstract org.apache.http.client.HttpRequestRetryHandler createHttpReq…
2449 …method @Deprecated protected abstract org.apache.http.conn.routing.HttpRoutePlanner createHttpRout…
2450 …method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createProxyAuth…
2451 …method @Deprecated protected abstract org.apache.http.client.RedirectHandler createRedirectHandler…
2452 …method @Deprecated protected abstract org.apache.http.protocol.HttpRequestExecutor createRequestEx…
2453 …method @Deprecated protected abstract org.apache.http.client.AuthenticationHandler createTargetAut…
2454 …method @Deprecated protected abstract org.apache.http.client.UserTokenHandler createUserTokenHandl…
2455 …method @Deprecated protected org.apache.http.params.HttpParams determineParams(org.apache.http.Htt…
2456 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.method…
2457 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.client.method…
2458 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org…
2459 …method @Deprecated public final org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org…
2460 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
2461 …method @Deprecated public <T> T execute(org.apache.http.client.methods.HttpUriRequest, org.apache.…
2462 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
2463 …method @Deprecated public <T> T execute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org…
2464 method @Deprecated public final org.apache.http.auth.AuthSchemeRegistry getAuthSchemes();
2465 …method @Deprecated public final org.apache.http.conn.ConnectionKeepAliveStrategy getConnectionKeep…
2466 …method @Deprecated public final org.apache.http.conn.ClientConnectionManager getConnectionManager(…
2467 …method @Deprecated public final org.apache.http.ConnectionReuseStrategy getConnectionReuseStrategy…
2468 method @Deprecated public final org.apache.http.cookie.CookieSpecRegistry getCookieSpecs();
2469 method @Deprecated public final org.apache.http.client.CookieStore getCookieStore();
2470 …method @Deprecated public final org.apache.http.client.CredentialsProvider getCredentialsProvider(…
2471 … method @Deprecated protected final org.apache.http.protocol.BasicHttpProcessor getHttpProcessor();
2472 …method @Deprecated public final org.apache.http.client.HttpRequestRetryHandler getHttpRequestRetry…
2473 method @Deprecated public final org.apache.http.params.HttpParams getParams();
2474 …method @Deprecated public final org.apache.http.client.AuthenticationHandler getProxyAuthenticatio…
2475 method @Deprecated public final org.apache.http.client.RedirectHandler getRedirectHandler();
2476 … method @Deprecated public final org.apache.http.protocol.HttpRequestExecutor getRequestExecutor();
2477 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
2478 method @Deprecated public int getRequestInterceptorCount();
2479 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
2480 method @Deprecated public int getResponseInterceptorCount();
2481 method @Deprecated public final org.apache.http.conn.routing.HttpRoutePlanner getRoutePlanner();
2482 …method @Deprecated public final org.apache.http.client.AuthenticationHandler getTargetAuthenticati…
2483 method @Deprecated public final org.apache.http.client.UserTokenHandler getUserTokenHandler();
2484 …method @Deprecated public void removeRequestInterceptorByClass(Class<? extends org.apache.http.Htt…
2485 …method @Deprecated public void removeResponseInterceptorByClass(Class<? extends org.apache.http.Ht…
2486 method @Deprecated public void setAuthSchemes(org.apache.http.auth.AuthSchemeRegistry);
2487 method @Deprecated public void setCookieSpecs(org.apache.http.cookie.CookieSpecRegistry);
2488 method @Deprecated public void setCookieStore(org.apache.http.client.CookieStore);
2489 … method @Deprecated public void setCredentialsProvider(org.apache.http.client.CredentialsProvider);
2490 …method @Deprecated public void setHttpRequestRetryHandler(org.apache.http.client.HttpRequestRetryH…
2491 …method @Deprecated public void setKeepAliveStrategy(org.apache.http.conn.ConnectionKeepAliveStrate…
2492 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
2493 …method @Deprecated public void setProxyAuthenticationHandler(org.apache.http.client.Authentication…
2494 method @Deprecated public void setRedirectHandler(org.apache.http.client.RedirectHandler);
2495 method @Deprecated public void setReuseStrategy(org.apache.http.ConnectionReuseStrategy);
2496 method @Deprecated public void setRoutePlanner(org.apache.http.conn.routing.HttpRoutePlanner);
2497 …method @Deprecated public void setTargetAuthenticationHandler(org.apache.http.client.Authenticatio…
2498 method @Deprecated public void setUserTokenHandler(org.apache.http.client.UserTokenHandler);
2501 @Deprecated public class BasicCookieStore implements org.apache.http.client.CookieStore {
2502 ctor @Deprecated public BasicCookieStore();
2503 method @Deprecated public void addCookie(org.apache.http.cookie.Cookie);
2504 method @Deprecated public void addCookies(org.apache.http.cookie.Cookie[]);
2505 method @Deprecated public void clear();
2506 method @Deprecated public boolean clearExpired(java.util.Date);
2507 method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> getCookies();
2510 …@Deprecated public class BasicCredentialsProvider implements org.apache.http.client.CredentialsPro…
2511 ctor @Deprecated public BasicCredentialsProvider();
2512 method @Deprecated public void clear();
2513 …method @Deprecated public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.Aut…
2514 …method @Deprecated public void setCredentials(org.apache.http.auth.AuthScope, org.apache.http.auth…
2517 …@Deprecated public class BasicResponseHandler implements org.apache.http.client.ResponseHandler<ja…
2518 ctor @Deprecated public BasicResponseHandler();
2519 …method @Deprecated public String handleResponse(org.apache.http.HttpResponse) throws org.apache.ht…
2522 @Deprecated public class ClientParamsStack extends org.apache.http.params.AbstractHttpParams {
2523 …ctor @Deprecated public ClientParamsStack(org.apache.http.params.HttpParams, org.apache.http.param…
2524 ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack);
2525 …ctor @Deprecated public ClientParamsStack(org.apache.http.impl.client.ClientParamsStack, org.apach…
2526 method @Deprecated public org.apache.http.params.HttpParams copy();
2527 method @Deprecated public final org.apache.http.params.HttpParams getApplicationParams();
2528 method @Deprecated public final org.apache.http.params.HttpParams getClientParams();
2529 method @Deprecated public final org.apache.http.params.HttpParams getOverrideParams();
2530 method @Deprecated public Object getParameter(String);
2531 method @Deprecated public final org.apache.http.params.HttpParams getRequestParams();
2532 method @Deprecated public boolean removeParameter(String);
2533 …method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object) throws ja…
2534 field @Deprecated protected final org.apache.http.params.HttpParams applicationParams;
2535 field @Deprecated protected final org.apache.http.params.HttpParams clientParams;
2536 field @Deprecated protected final org.apache.http.params.HttpParams overrideParams;
2537 field @Deprecated protected final org.apache.http.params.HttpParams requestParams;
2540 …@Deprecated public class DefaultConnectionKeepAliveStrategy implements org.apache.http.conn.Connec…
2541 ctor @Deprecated public DefaultConnectionKeepAliveStrategy();
2542 …method @Deprecated public long getKeepAliveDuration(org.apache.http.HttpResponse, org.apache.http.…
2545 …@Deprecated public class DefaultHttpClient extends org.apache.http.impl.client.AbstractHttpClient {
2546 …ctor @Deprecated public DefaultHttpClient(org.apache.http.conn.ClientConnectionManager, org.apache…
2547 ctor @Deprecated public DefaultHttpClient(org.apache.http.params.HttpParams);
2548 ctor @Deprecated public DefaultHttpClient();
2549 method @Deprecated protected org.apache.http.auth.AuthSchemeRegistry createAuthSchemeRegistry();
2550 …method @Deprecated protected org.apache.http.conn.ClientConnectionManager createClientConnectionMa…
2551 …method @Deprecated protected org.apache.http.conn.ConnectionKeepAliveStrategy createConnectionKeep…
2552 …method @Deprecated protected org.apache.http.ConnectionReuseStrategy createConnectionReuseStrategy…
2553 … method @Deprecated protected org.apache.http.cookie.CookieSpecRegistry createCookieSpecRegistry();
2554 method @Deprecated protected org.apache.http.client.CookieStore createCookieStore();
2555 …method @Deprecated protected org.apache.http.client.CredentialsProvider createCredentialsProvider(…
2556 method @Deprecated protected org.apache.http.protocol.HttpContext createHttpContext();
2557 method @Deprecated protected org.apache.http.params.HttpParams createHttpParams();
2558 method @Deprecated protected org.apache.http.protocol.BasicHttpProcessor createHttpProcessor();
2559 …method @Deprecated protected org.apache.http.client.HttpRequestRetryHandler createHttpRequestRetry…
2560 …method @Deprecated protected org.apache.http.conn.routing.HttpRoutePlanner createHttpRoutePlanner(…
2561 …method @Deprecated protected org.apache.http.client.AuthenticationHandler createProxyAuthenticatio…
2562 method @Deprecated protected org.apache.http.client.RedirectHandler createRedirectHandler();
2563 … method @Deprecated protected org.apache.http.protocol.HttpRequestExecutor createRequestExecutor();
2564 …method @Deprecated protected org.apache.http.client.AuthenticationHandler createTargetAuthenticati…
2565 method @Deprecated protected org.apache.http.client.UserTokenHandler createUserTokenHandler();
2568 …@Deprecated public class DefaultHttpRequestRetryHandler implements org.apache.http.client.HttpRequ…
2569 ctor @Deprecated public DefaultHttpRequestRetryHandler(int, boolean);
2570 ctor @Deprecated public DefaultHttpRequestRetryHandler();
2571 method @Deprecated public int getRetryCount();
2572 method @Deprecated public boolean isRequestSentRetryEnabled();
2573 …method @Deprecated public boolean retryRequest(java.io.IOException, int, org.apache.http.protocol.…
2576 …@Deprecated public class DefaultProxyAuthenticationHandler extends org.apache.http.impl.client.Abs…
2577 ctor @Deprecated public DefaultProxyAuthenticationHandler();
2578 …method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org…
2579 …method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apac…
2582 …@Deprecated public class DefaultRedirectHandler implements org.apache.http.client.RedirectHandler {
2583 ctor @Deprecated public DefaultRedirectHandler();
2584 …method @Deprecated public java.net.URI getLocationURI(org.apache.http.HttpResponse, org.apache.htt…
2585 …method @Deprecated public boolean isRedirectRequested(org.apache.http.HttpResponse, org.apache.htt…
2588 …@Deprecated public class DefaultRequestDirector implements org.apache.http.client.RequestDirector {
2589 …ctor @Deprecated public DefaultRequestDirector(org.apache.http.protocol.HttpRequestExecutor, org.a…
2590 …method @Deprecated protected org.apache.http.HttpRequest createConnectRequest(org.apache.http.conn…
2591 …method @Deprecated protected boolean createTunnelToProxy(org.apache.http.conn.routing.HttpRoute, i…
2592 …method @Deprecated protected boolean createTunnelToTarget(org.apache.http.conn.routing.HttpRoute, …
2593 …method @Deprecated protected org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http…
2594 …method @Deprecated protected void establishRoute(org.apache.http.conn.routing.HttpRoute, org.apach…
2595 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpHost, org.apach…
2596 …method @Deprecated protected org.apache.http.impl.client.RoutedRequest handleResponse(org.apache.h…
2597 method @Deprecated protected void releaseConnection();
2598 …method @Deprecated protected void rewriteRequestURI(org.apache.http.impl.client.RequestWrapper, or…
2599 field @Deprecated protected final org.apache.http.conn.ClientConnectionManager connManager;
2600 field @Deprecated protected final org.apache.http.protocol.HttpProcessor httpProcessor;
2601 …field @Deprecated protected final org.apache.http.conn.ConnectionKeepAliveStrategy keepAliveStrate…
2602 field @Deprecated protected org.apache.http.conn.ManagedClientConnection managedConn;
2603 field @Deprecated protected final org.apache.http.params.HttpParams params;
2604 field @Deprecated protected final org.apache.http.client.RedirectHandler redirectHandler;
2605 field @Deprecated protected final org.apache.http.protocol.HttpRequestExecutor requestExec;
2606 field @Deprecated protected final org.apache.http.client.HttpRequestRetryHandler retryHandler;
2607 field @Deprecated protected final org.apache.http.ConnectionReuseStrategy reuseStrategy;
2608 field @Deprecated protected final org.apache.http.conn.routing.HttpRoutePlanner routePlanner;
2611 …@Deprecated public class DefaultTargetAuthenticationHandler extends org.apache.http.impl.client.Ab…
2612 ctor @Deprecated public DefaultTargetAuthenticationHandler();
2613 …method @Deprecated public java.util.Map<java.lang.String,org.apache.http.Header> getChallenges(org…
2614 …method @Deprecated public boolean isAuthenticationRequested(org.apache.http.HttpResponse, org.apac…
2617 …@Deprecated public class DefaultUserTokenHandler implements org.apache.http.client.UserTokenHandle…
2618 ctor @Deprecated public DefaultUserTokenHandler();
2619 method @Deprecated public Object getUserToken(org.apache.http.protocol.HttpContext);
2622 …@Deprecated public class EntityEnclosingRequestWrapper extends org.apache.http.impl.client.Request…
2623 …ctor @Deprecated public EntityEnclosingRequestWrapper(org.apache.http.HttpEntityEnclosingRequest) …
2624 method @Deprecated public boolean expectContinue();
2625 method @Deprecated public org.apache.http.HttpEntity getEntity();
2626 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
2629 @Deprecated public class RedirectLocations {
2630 ctor @Deprecated public RedirectLocations();
2631 method @Deprecated public void add(java.net.URI);
2632 method @Deprecated public boolean contains(java.net.URI);
2633 method @Deprecated public boolean remove(java.net.URI);
2636 …@Deprecated public class RequestWrapper extends org.apache.http.message.AbstractHttpMessage implem…
2637 …ctor @Deprecated public RequestWrapper(org.apache.http.HttpRequest) throws org.apache.http.Protoco…
2638 method @Deprecated public void abort() throws java.lang.UnsupportedOperationException;
2639 method @Deprecated public int getExecCount();
2640 method @Deprecated public String getMethod();
2641 method @Deprecated public org.apache.http.HttpRequest getOriginal();
2642 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
2643 method @Deprecated public org.apache.http.RequestLine getRequestLine();
2644 method @Deprecated public java.net.URI getURI();
2645 method @Deprecated public void incrementExecCount();
2646 method @Deprecated public boolean isAborted();
2647 method @Deprecated public boolean isRepeatable();
2648 method @Deprecated public void resetHeaders();
2649 method @Deprecated public void setMethod(String);
2650 method @Deprecated public void setProtocolVersion(org.apache.http.ProtocolVersion);
2651 method @Deprecated public void setURI(java.net.URI);
2654 @Deprecated public class RoutedRequest {
2655 …ctor @Deprecated public RoutedRequest(org.apache.http.impl.client.RequestWrapper, org.apache.http.…
2656 method @Deprecated public final org.apache.http.impl.client.RequestWrapper getRequest();
2657 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2658 field @Deprecated protected final org.apache.http.impl.client.RequestWrapper request;
2659 field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2662 @Deprecated public class TunnelRefusedException extends org.apache.http.HttpException {
2663 ctor @Deprecated public TunnelRefusedException(String, org.apache.http.HttpResponse);
2664 method @Deprecated public org.apache.http.HttpResponse getResponse();
2671 …@Deprecated public abstract class AbstractClientConnAdapter implements org.apache.http.conn.Manage…
2672 …ctor @Deprecated protected AbstractClientConnAdapter(org.apache.http.conn.ClientConnectionManager,…
2673 method @Deprecated public void abortConnection();
2674 … method @Deprecated protected final void assertNotAborted() throws java.io.InterruptedIOException;
2675 …method @Deprecated protected final void assertValid(org.apache.http.conn.OperatedClientConnection);
2676 method @Deprecated protected void detach();
2677 method @Deprecated public void flush() throws java.io.IOException;
2678 method @Deprecated public java.net.InetAddress getLocalAddress();
2679 method @Deprecated public int getLocalPort();
2680 method @Deprecated protected org.apache.http.conn.ClientConnectionManager getManager();
2681 method @Deprecated public org.apache.http.HttpConnectionMetrics getMetrics();
2682 method @Deprecated public java.net.InetAddress getRemoteAddress();
2683 method @Deprecated public int getRemotePort();
2684 method @Deprecated public javax.net.ssl.SSLSession getSSLSession();
2685 method @Deprecated public int getSocketTimeout();
2686 … method @Deprecated protected org.apache.http.conn.OperatedClientConnection getWrappedConnection();
2687 method @Deprecated public boolean isMarkedReusable();
2688 method @Deprecated public boolean isOpen();
2689 method @Deprecated public boolean isResponseAvailable(int) throws java.io.IOException;
2690 method @Deprecated public boolean isSecure();
2691 method @Deprecated public boolean isStale();
2692 method @Deprecated public void markReusable();
2693 …method @Deprecated public void receiveResponseEntity(org.apache.http.HttpResponse) throws org.apac…
2694 …method @Deprecated public org.apache.http.HttpResponse receiveResponseHeader() throws org.apache.h…
2695 method @Deprecated public void releaseConnection();
2696 …method @Deprecated public void sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest) throw…
2697 …method @Deprecated public void sendRequestHeader(org.apache.http.HttpRequest) throws org.apache.ht…
2698 method @Deprecated public void setIdleDuration(long, java.util.concurrent.TimeUnit);
2699 method @Deprecated public void setSocketTimeout(int);
2700 method @Deprecated public void unmarkReusable();
2703 @Deprecated public abstract class AbstractPoolEntry {
2704 …ctor @Deprecated protected AbstractPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.ap…
2705 method @Deprecated public Object getState();
2706 …method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http…
2707 …method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protoc…
2708 method @Deprecated public void setState(Object);
2709 method @Deprecated protected void shutdownEntry();
2710 …method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.para…
2711 …method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws jav…
2712 field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator connOperator;
2713 field @Deprecated protected final org.apache.http.conn.OperatedClientConnection connection;
2714 field @Deprecated protected volatile org.apache.http.conn.routing.HttpRoute route;
2715 field @Deprecated protected volatile Object state;
2716 field @Deprecated protected volatile org.apache.http.conn.routing.RouteTracker tracker;
2719 …@Deprecated public abstract class AbstractPooledConnAdapter extends org.apache.http.impl.conn.Abst…
2720 …ctor @Deprecated protected AbstractPooledConnAdapter(org.apache.http.conn.ClientConnectionManager,…
2721 method @Deprecated protected final void assertAttached();
2722 method @Deprecated public void close() throws java.io.IOException;
2723 method @Deprecated public org.apache.http.conn.routing.HttpRoute getRoute();
2724 method @Deprecated public Object getState();
2725 …method @Deprecated public void layerProtocol(org.apache.http.protocol.HttpContext, org.apache.http…
2726 …method @Deprecated public void open(org.apache.http.conn.routing.HttpRoute, org.apache.http.protoc…
2727 method @Deprecated public void setState(Object);
2728 method @Deprecated public void shutdown() throws java.io.IOException;
2729 …method @Deprecated public void tunnelProxy(org.apache.http.HttpHost, boolean, org.apache.http.para…
2730 …method @Deprecated public void tunnelTarget(boolean, org.apache.http.params.HttpParams) throws jav…
2731 field @Deprecated protected volatile org.apache.http.impl.conn.AbstractPoolEntry poolEntry;
2734 …@Deprecated public class DefaultClientConnection extends org.apache.http.impl.SocketHttpClientConn…
2735 ctor @Deprecated public DefaultClientConnection();
2736 method @Deprecated public final java.net.Socket getSocket();
2737 method @Deprecated public final org.apache.http.HttpHost getTargetHost();
2738 method @Deprecated public final boolean isSecure();
2739 …method @Deprecated public void openCompleted(boolean, org.apache.http.params.HttpParams) throws ja…
2740 …method @Deprecated public void opening(java.net.Socket, org.apache.http.HttpHost) throws java.io.I…
2741 …method @Deprecated public void update(java.net.Socket, org.apache.http.HttpHost, boolean, org.apac…
2744 …@Deprecated public class DefaultClientConnectionOperator implements org.apache.http.conn.ClientCon…
2745 …ctor @Deprecated public DefaultClientConnectionOperator(org.apache.http.conn.scheme.SchemeRegistry…
2746 method @Deprecated public org.apache.http.conn.OperatedClientConnection createConnection();
2747 …method @Deprecated public void openConnection(org.apache.http.conn.OperatedClientConnection, org.a…
2748 …method @Deprecated protected void prepareSocket(java.net.Socket, org.apache.http.protocol.HttpCont…
2749 …method @Deprecated public void updateSecureConnection(org.apache.http.conn.OperatedClientConnectio…
2750 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2753 …@Deprecated public class DefaultHttpRoutePlanner implements org.apache.http.conn.routing.HttpRoute…
2754 ctor @Deprecated public DefaultHttpRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry);
2755 …method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.Ht…
2756 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2759 …@Deprecated public class DefaultResponseParser extends org.apache.http.impl.io.AbstractMessagePars…
2760 …ctor @Deprecated public DefaultResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.ht…
2761 …method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInput…
2764 @Deprecated public class IdleConnectionHandler {
2765 ctor @Deprecated public IdleConnectionHandler();
2766 …method @Deprecated public void add(org.apache.http.HttpConnection, long, java.util.concurrent.Time…
2767 method @Deprecated public void closeExpiredConnections();
2768 method @Deprecated public void closeIdleConnections(long);
2769 method @Deprecated public boolean remove(org.apache.http.HttpConnection);
2770 method @Deprecated public void removeAll();
2773 …@Deprecated public class LoggingSessionInputBuffer implements org.apache.http.io.SessionInputBuffe…
2774 …ctor @Deprecated public LoggingSessionInputBuffer(org.apache.http.io.SessionInputBuffer, org.apach…
2775 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2776 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
2777 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
2778 method @Deprecated public int read() throws java.io.IOException;
2779 method @Deprecated public int read(byte[]) throws java.io.IOException;
2780 method @Deprecated public String readLine() throws java.io.IOException;
2781 …method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExce…
2784 …@Deprecated public class LoggingSessionOutputBuffer implements org.apache.http.io.SessionOutputBuf…
2785 …ctor @Deprecated public LoggingSessionOutputBuffer(org.apache.http.io.SessionOutputBuffer, org.apa…
2786 method @Deprecated public void flush() throws java.io.IOException;
2787 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
2788 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
2789 method @Deprecated public void write(int) throws java.io.IOException;
2790 method @Deprecated public void write(byte[]) throws java.io.IOException;
2791 …method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOEx…
2792 method @Deprecated public void writeLine(String) throws java.io.IOException;
2795 …@Deprecated public class ProxySelectorRoutePlanner implements org.apache.http.conn.routing.HttpRou…
2796 …ctor @Deprecated public ProxySelectorRoutePlanner(org.apache.http.conn.scheme.SchemeRegistry, java…
2797 …method @Deprecated protected java.net.Proxy chooseProxy(java.util.List<java.net.Proxy>, org.apache…
2798 …method @Deprecated protected org.apache.http.HttpHost determineProxy(org.apache.http.HttpHost, org…
2799 …method @Deprecated public org.apache.http.conn.routing.HttpRoute determineRoute(org.apache.http.Ht…
2800 method @Deprecated protected String getHost(java.net.InetSocketAddress);
2801 method @Deprecated public java.net.ProxySelector getProxySelector();
2802 method @Deprecated public void setProxySelector(java.net.ProxySelector);
2803 field @Deprecated protected java.net.ProxySelector proxySelector;
2804 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2807 …@Deprecated public class SingleClientConnManager implements org.apache.http.conn.ClientConnectionM…
2808 …ctor @Deprecated public SingleClientConnManager(org.apache.http.params.HttpParams, org.apache.http…
2809 method @Deprecated protected final void assertStillUp() throws java.lang.IllegalStateException;
2810 method @Deprecated public void closeExpiredConnections();
2811 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2812 …method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperato…
2813 …method @Deprecated public org.apache.http.conn.ManagedClientConnection getConnection(org.apache.ht…
2814 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2815 …method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, lon…
2816 …method @Deprecated public final org.apache.http.conn.ClientConnectionRequest requestConnection(org…
2817 method @Deprecated protected void revokeConnection();
2818 method @Deprecated public void shutdown();
2819 …field @Deprecated public static final String MISUSE_MESSAGE = "Invalid use of SingleClientConnMana…
2820 field @Deprecated protected boolean alwaysShutDown;
2821 field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2822 field @Deprecated protected long connectionExpiresTime;
2823 field @Deprecated protected volatile boolean isShutDown;
2824 field @Deprecated protected long lastReleaseTime;
2825 …field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.ConnAdapter managedC…
2826 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2827 …field @Deprecated protected org.apache.http.impl.conn.SingleClientConnManager.PoolEntry uniquePool…
2830 …@Deprecated protected class SingleClientConnManager.ConnAdapter extends org.apache.http.impl.conn.…
2831 …ctor @Deprecated protected SingleClientConnManager.ConnAdapter(org.apache.http.impl.conn.SingleCli…
2834 …@Deprecated protected class SingleClientConnManager.PoolEntry extends org.apache.http.impl.conn.Ab…
2835 ctor @Deprecated protected SingleClientConnManager.PoolEntry();
2836 method @Deprecated protected void close() throws java.io.IOException;
2837 method @Deprecated protected void shutdown() throws java.io.IOException;
2840 @Deprecated public class Wire {
2841 ctor @Deprecated public Wire(org.apache.commons.logging.Log);
2842 method @Deprecated public boolean enabled();
2843 method @Deprecated public void input(java.io.InputStream) throws java.io.IOException;
2844 method @Deprecated public void input(byte[], int, int) throws java.io.IOException;
2845 method @Deprecated public void input(byte[]) throws java.io.IOException;
2846 method @Deprecated public void input(int) throws java.io.IOException;
2847 method @Deprecated public void input(String) throws java.io.IOException;
2848 method @Deprecated public void output(java.io.InputStream) throws java.io.IOException;
2849 method @Deprecated public void output(byte[], int, int) throws java.io.IOException;
2850 method @Deprecated public void output(byte[]) throws java.io.IOException;
2851 method @Deprecated public void output(int) throws java.io.IOException;
2852 method @Deprecated public void output(String) throws java.io.IOException;
2859 …@Deprecated public abstract class AbstractConnPool implements org.apache.http.impl.conn.tsccm.RefQ…
2860 ctor @Deprecated protected AbstractConnPool();
2861 … method @Deprecated protected void closeConnection(org.apache.http.conn.OperatedClientConnection);
2862 method @Deprecated public void closeExpiredConnections();
2863 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2864 method @Deprecated public abstract void deleteClosedConnections();
2865 method @Deprecated public void enableConnectionGC() throws java.lang.IllegalStateException;
2866 …method @Deprecated public abstract void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, …
2867 …method @Deprecated public final org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntry(org.apache…
2868 …method @Deprecated protected abstract void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2869 method @Deprecated public void handleReference(java.lang.ref.Reference);
2870 …method @Deprecated public abstract org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEnt…
2871 method @Deprecated public void shutdown();
2872 field @Deprecated protected org.apache.http.impl.conn.IdleConnectionHandler idleConnHandler;
2873 field @Deprecated protected volatile boolean isShutDown;
2874 …field @Deprecated protected java.util.Set<org.apache.http.impl.conn.tsccm.BasicPoolEntryRef> issue…
2875 field @Deprecated protected int numConnections;
2876 field @Deprecated protected final java.util.concurrent.locks.Lock poolLock;
2877 field @Deprecated protected java.lang.ref.ReferenceQueue<java.lang.Object> refQueue;
2880 @Deprecated public class BasicPoolEntry extends org.apache.http.impl.conn.AbstractPoolEntry {
2881 …ctor @Deprecated public BasicPoolEntry(org.apache.http.conn.ClientConnectionOperator, org.apache.h…
2882 … method @Deprecated protected final org.apache.http.conn.OperatedClientConnection getConnection();
2883 method @Deprecated protected final org.apache.http.conn.routing.HttpRoute getPlannedRoute();
2884 … method @Deprecated protected final org.apache.http.impl.conn.tsccm.BasicPoolEntryRef getWeakRef();
2887 …@Deprecated public class BasicPoolEntryRef extends java.lang.ref.WeakReference<org.apache.http.imp…
2888 …ctor @Deprecated public BasicPoolEntryRef(org.apache.http.impl.conn.tsccm.BasicPoolEntry, java.lan…
2889 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2892 …@Deprecated public class BasicPooledConnAdapter extends org.apache.http.impl.conn.AbstractPooledCo…
2893 …ctor @Deprecated protected BasicPooledConnAdapter(org.apache.http.impl.conn.tsccm.ThreadSafeClient…
2894 method @Deprecated protected org.apache.http.impl.conn.AbstractPoolEntry getPoolEntry();
2897 …@Deprecated public class ConnPoolByRoute extends org.apache.http.impl.conn.tsccm.AbstractConnPool {
2898 …ctor @Deprecated public ConnPoolByRoute(org.apache.http.conn.ClientConnectionOperator, org.apache.…
2899 …method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry createEntry(org.apache…
2900 …method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> creat…
2901 …method @Deprecated protected java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.http.…
2902 …method @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> create…
2903 method @Deprecated public void deleteClosedConnections();
2904 method @Deprecated protected void deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2905 method @Deprecated protected void deleteLeastUsedEntry();
2906 …method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry, boolean, …
2907 method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2908 …method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getEntryBlocking(org.a…
2909 …method @Deprecated protected org.apache.http.impl.conn.tsccm.BasicPoolEntry getFreeEntry(org.apach…
2910 …method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool getRoutePool(org.ap…
2911 method @Deprecated protected void handleLostEntry(org.apache.http.conn.routing.HttpRoute);
2912 …method @Deprecated protected org.apache.http.impl.conn.tsccm.RouteSpecificPool newRouteSpecificPoo…
2913 …method @Deprecated protected org.apache.http.impl.conn.tsccm.WaitingThread newWaitingThread(java.u…
2914 …method @Deprecated protected void notifyWaitingThread(org.apache.http.impl.conn.tsccm.RouteSpecifi…
2915 …method @Deprecated public org.apache.http.impl.conn.tsccm.PoolEntryRequest requestPoolEntry(org.ap…
2916 …field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.BasicPoolEntry> freeCo…
2917 field @Deprecated protected final int maxTotalConnections;
2918 field @Deprecated protected final org.apache.http.conn.ClientConnectionOperator operator;
2919 …field @Deprecated protected final java.util.Map<org.apache.http.conn.routing.HttpRoute,org.apache.…
2920 …field @Deprecated protected java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> waiting…
2923 @Deprecated public interface PoolEntryRequest {
2924 method @Deprecated public void abortRequest();
2925 …method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry getPoolEntry(long, java.u…
2928 @Deprecated public interface RefQueueHandler {
2929 method @Deprecated public void handleReference(java.lang.ref.Reference<?>);
2932 @Deprecated public class RefQueueWorker implements java.lang.Runnable {
2933 …ctor @Deprecated public RefQueueWorker(java.lang.ref.ReferenceQueue<?>, org.apache.http.impl.conn.…
2934 method @Deprecated public void run();
2935 method @Deprecated public void shutdown();
2936 field @Deprecated protected final org.apache.http.impl.conn.tsccm.RefQueueHandler refHandler;
2937 field @Deprecated protected final java.lang.ref.ReferenceQueue<?> refQueue;
2938 field @Deprecated protected volatile Thread workerThread;
2941 @Deprecated public class RouteSpecificPool {
2942 ctor @Deprecated public RouteSpecificPool(org.apache.http.conn.routing.HttpRoute, int);
2943 method @Deprecated public org.apache.http.impl.conn.tsccm.BasicPoolEntry allocEntry(Object);
2944 method @Deprecated public void createdEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2945 method @Deprecated public boolean deleteEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2946 method @Deprecated public void dropEntry();
2947 method @Deprecated public void freeEntry(org.apache.http.impl.conn.tsccm.BasicPoolEntry);
2948 method @Deprecated public int getCapacity();
2949 method @Deprecated public final int getEntryCount();
2950 method @Deprecated public final int getMaxEntries();
2951 method @Deprecated public final org.apache.http.conn.routing.HttpRoute getRoute();
2952 method @Deprecated public boolean hasThread();
2953 method @Deprecated public boolean isUnused();
2954 method @Deprecated public org.apache.http.impl.conn.tsccm.WaitingThread nextThread();
2955 method @Deprecated public void queueThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2956 method @Deprecated public void removeThread(org.apache.http.impl.conn.tsccm.WaitingThread);
2957 …field @Deprecated protected final java.util.LinkedList<org.apache.http.impl.conn.tsccm.BasicPoolEn…
2958 field @Deprecated protected final int maxEntries;
2959 field @Deprecated protected int numEntries;
2960 field @Deprecated protected final org.apache.http.conn.routing.HttpRoute route;
2961 …field @Deprecated protected final java.util.Queue<org.apache.http.impl.conn.tsccm.WaitingThread> w…
2964 …@Deprecated public class ThreadSafeClientConnManager implements org.apache.http.conn.ClientConnect…
2965 …ctor @Deprecated public ThreadSafeClientConnManager(org.apache.http.params.HttpParams, org.apache.…
2966 method @Deprecated public void closeExpiredConnections();
2967 method @Deprecated public void closeIdleConnections(long, java.util.concurrent.TimeUnit);
2968 …method @Deprecated protected org.apache.http.conn.ClientConnectionOperator createConnectionOperato…
2969 …method @Deprecated protected org.apache.http.impl.conn.tsccm.AbstractConnPool createConnectionPool…
2970 method @Deprecated public int getConnectionsInPool(org.apache.http.conn.routing.HttpRoute);
2971 method @Deprecated public int getConnectionsInPool();
2972 method @Deprecated public org.apache.http.conn.scheme.SchemeRegistry getSchemeRegistry();
2973 …method @Deprecated public void releaseConnection(org.apache.http.conn.ManagedClientConnection, lon…
2974 …method @Deprecated public org.apache.http.conn.ClientConnectionRequest requestConnection(org.apach…
2975 method @Deprecated public void shutdown();
2976 field @Deprecated protected org.apache.http.conn.ClientConnectionOperator connOperator;
2977 … field @Deprecated protected final org.apache.http.impl.conn.tsccm.AbstractConnPool connectionPool;
2978 field @Deprecated protected org.apache.http.conn.scheme.SchemeRegistry schemeRegistry;
2981 @Deprecated public class WaitingThread {
2982 …ctor @Deprecated public WaitingThread(java.util.concurrent.locks.Condition, org.apache.http.impl.c…
2983 method @Deprecated public boolean await(java.util.Date) throws java.lang.InterruptedException;
2984 method @Deprecated public final java.util.concurrent.locks.Condition getCondition();
2985 method @Deprecated public final org.apache.http.impl.conn.tsccm.RouteSpecificPool getPool();
2986 method @Deprecated public final Thread getThread();
2987 method @Deprecated public void interrupt();
2988 method @Deprecated public void wakeup();
2991 @Deprecated public class WaitingThreadAborter {
2992 ctor @Deprecated public WaitingThreadAborter();
2993 method @Deprecated public void abort();
2994 method @Deprecated public void setWaitingThread(org.apache.http.impl.conn.tsccm.WaitingThread);
3001 …@Deprecated public abstract class AbstractCookieAttributeHandler implements org.apache.http.cookie…
3002 ctor @Deprecated public AbstractCookieAttributeHandler();
3003 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3004 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3007 …@Deprecated public abstract class AbstractCookieSpec implements org.apache.http.cookie.CookieSpec {
3008 ctor @Deprecated public AbstractCookieSpec();
3009 …method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler findAttribHandler(Strin…
3010 …method @Deprecated protected org.apache.http.cookie.CookieAttributeHandler getAttribHandler(String…
3011 …method @Deprecated protected java.util.Collection<org.apache.http.cookie.CookieAttributeHandler> g…
3012 …method @Deprecated public void registerAttribHandler(String, org.apache.http.cookie.CookieAttribut…
3015 …@Deprecated public class BasicClientCookie implements org.apache.http.cookie.ClientCookie java.lan…
3016 ctor @Deprecated public BasicClientCookie(String, String);
3017 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3018 method @Deprecated public boolean containsAttribute(String);
3019 method @Deprecated public String getAttribute(String);
3020 method @Deprecated public String getComment();
3021 method @Deprecated public String getCommentURL();
3022 method @Deprecated public String getDomain();
3023 method @Deprecated public java.util.Date getExpiryDate();
3024 method @Deprecated public String getName();
3025 method @Deprecated public String getPath();
3026 method @Deprecated public int[] getPorts();
3027 method @Deprecated public String getValue();
3028 method @Deprecated public int getVersion();
3029 method @Deprecated public boolean isExpired(java.util.Date);
3030 method @Deprecated public boolean isPersistent();
3031 method @Deprecated public boolean isSecure();
3032 method @Deprecated public void setAttribute(String, String);
3033 method @Deprecated public void setComment(String);
3034 method @Deprecated public void setDomain(String);
3035 method @Deprecated public void setExpiryDate(java.util.Date);
3036 method @Deprecated public void setPath(String);
3037 method @Deprecated public void setSecure(boolean);
3038 method @Deprecated public void setValue(String);
3039 method @Deprecated public void setVersion(int);
3042 …@Deprecated public class BasicClientCookie2 extends org.apache.http.impl.cookie.BasicClientCookie …
3043 ctor @Deprecated public BasicClientCookie2(String, String);
3044 method @Deprecated public void setCommentURL(String);
3045 method @Deprecated public void setDiscard(boolean);
3046 method @Deprecated public void setPorts(int[]);
3049 …@Deprecated public class BasicCommentHandler extends org.apache.http.impl.cookie.AbstractCookieAtt…
3050 ctor @Deprecated public BasicCommentHandler();
3051 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3054 …@Deprecated public class BasicDomainHandler implements org.apache.http.cookie.CookieAttributeHandl…
3055 ctor @Deprecated public BasicDomainHandler();
3056 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3057 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3058 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3061 …@Deprecated public class BasicExpiresHandler extends org.apache.http.impl.cookie.AbstractCookieAtt…
3062 ctor @Deprecated public BasicExpiresHandler(String[]);
3063 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3066 …@Deprecated public class BasicMaxAgeHandler extends org.apache.http.impl.cookie.AbstractCookieAttr…
3067 ctor @Deprecated public BasicMaxAgeHandler();
3068 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3071 …@Deprecated public class BasicPathHandler implements org.apache.http.cookie.CookieAttributeHandler…
3072 ctor @Deprecated public BasicPathHandler();
3073 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3074 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3075 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3078 …@Deprecated public class BasicSecureHandler extends org.apache.http.impl.cookie.AbstractCookieAttr…
3079 ctor @Deprecated public BasicSecureHandler();
3080 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3083 @Deprecated public class BestMatchSpec implements org.apache.http.cookie.CookieSpec {
3084 ctor @Deprecated public BestMatchSpec(String[], boolean);
3085 ctor @Deprecated public BestMatchSpec();
3086 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3087 method @Deprecated public int getVersion();
3088 method @Deprecated public org.apache.http.Header getVersionHeader();
3089 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3090 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3091 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3094 …@Deprecated public class BestMatchSpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3095 ctor @Deprecated public BestMatchSpecFactory();
3096 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3099 @Deprecated public class BrowserCompatSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3100 ctor @Deprecated public BrowserCompatSpec(String[]);
3101 ctor @Deprecated public BrowserCompatSpec();
3102 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3103 method @Deprecated public int getVersion();
3104 method @Deprecated public org.apache.http.Header getVersionHeader();
3105 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3106 field @Deprecated protected static final String[] DATE_PATTERNS;
3109 …@Deprecated public class BrowserCompatSpecFactory implements org.apache.http.cookie.CookieSpecFact…
3110 ctor @Deprecated public BrowserCompatSpecFactory();
3111 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3114 …@Deprecated public abstract class CookieSpecBase extends org.apache.http.impl.cookie.AbstractCooki…
3115 ctor @Deprecated public CookieSpecBase();
3116 … method @Deprecated protected static String getDefaultDomain(org.apache.http.cookie.CookieOrigin);
3117 method @Deprecated protected static String getDefaultPath(org.apache.http.cookie.CookieOrigin);
3118 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3119 …method @Deprecated protected java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.H…
3120 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3123 @Deprecated public class DateParseException extends java.lang.Exception {
3124 ctor @Deprecated public DateParseException();
3125 ctor @Deprecated public DateParseException(String);
3128 @Deprecated public final class DateUtils {
3129 method @Deprecated public static String formatDate(java.util.Date);
3130 method @Deprecated public static String formatDate(java.util.Date, String);
3131 …method @Deprecated public static java.util.Date parseDate(String) throws org.apache.http.impl.cook…
3132 …method @Deprecated public static java.util.Date parseDate(String, String[]) throws org.apache.http…
3133 …method @Deprecated public static java.util.Date parseDate(String, String[], java.util.Date) throws…
3134 field @Deprecated public static final java.util.TimeZone GMT;
3135 field @Deprecated public static final String PATTERN_ASCTIME = "EEE MMM d HH:mm:ss yyyy";
3136 field @Deprecated public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
3137 field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
3140 …@Deprecated public class NetscapeDomainHandler extends org.apache.http.impl.cookie.BasicDomainHand…
3141 ctor @Deprecated public NetscapeDomainHandler();
3144 @Deprecated public class NetscapeDraftHeaderParser {
3145 ctor @Deprecated public NetscapeDraftHeaderParser();
3146 …method @Deprecated public org.apache.http.HeaderElement parseHeader(org.apache.http.util.CharArray…
3147 …field @Deprecated public static final org.apache.http.impl.cookie.NetscapeDraftHeaderParser DEFAUL…
3150 @Deprecated public class NetscapeDraftSpec extends org.apache.http.impl.cookie.CookieSpecBase {
3151 ctor @Deprecated public NetscapeDraftSpec(String[]);
3152 ctor @Deprecated public NetscapeDraftSpec();
3153 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3154 method @Deprecated public int getVersion();
3155 method @Deprecated public org.apache.http.Header getVersionHeader();
3156 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3157 field @Deprecated protected static final String EXPIRES_PATTERN = "EEE, dd-MMM-yyyy HH:mm:ss z";
3160 …@Deprecated public class NetscapeDraftSpecFactory implements org.apache.http.cookie.CookieSpecFact…
3161 ctor @Deprecated public NetscapeDraftSpecFactory();
3162 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3165 …@Deprecated public class RFC2109DomainHandler implements org.apache.http.cookie.CookieAttributeHan…
3166 ctor @Deprecated public RFC2109DomainHandler();
3167 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3168 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3169 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3172 @Deprecated public class RFC2109Spec extends org.apache.http.impl.cookie.CookieSpecBase {
3173 ctor @Deprecated public RFC2109Spec(String[], boolean);
3174 ctor @Deprecated public RFC2109Spec();
3175 …method @Deprecated protected void formatCookieAsVer(org.apache.http.util.CharArrayBuffer, org.apac…
3176 …method @Deprecated public java.util.List<org.apache.http.Header> formatCookies(java.util.List<org.…
3177 …method @Deprecated protected void formatParamAsVer(org.apache.http.util.CharArrayBuffer, String, S…
3178 method @Deprecated public int getVersion();
3179 method @Deprecated public org.apache.http.Header getVersionHeader();
3180 …method @Deprecated public java.util.List<org.apache.http.cookie.Cookie> parse(org.apache.http.Head…
3183 @Deprecated public class RFC2109SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3184 ctor @Deprecated public RFC2109SpecFactory();
3185 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3188 …@Deprecated public class RFC2109VersionHandler extends org.apache.http.impl.cookie.AbstractCookieA…
3189 ctor @Deprecated public RFC2109VersionHandler();
3190 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3193 …@Deprecated public class RFC2965CommentUrlAttributeHandler implements org.apache.http.cookie.Cooki…
3194 ctor @Deprecated public RFC2965CommentUrlAttributeHandler();
3195 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3196 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3197 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3200 …@Deprecated public class RFC2965DiscardAttributeHandler implements org.apache.http.cookie.CookieAt…
3201 ctor @Deprecated public RFC2965DiscardAttributeHandler();
3202 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3203 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3204 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3207 …@Deprecated public class RFC2965DomainAttributeHandler implements org.apache.http.cookie.CookieAtt…
3208 ctor @Deprecated public RFC2965DomainAttributeHandler();
3209 method @Deprecated public boolean domainMatch(String, String);
3210 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3211 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3212 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3215 …@Deprecated public class RFC2965PortAttributeHandler implements org.apache.http.cookie.CookieAttri…
3216 ctor @Deprecated public RFC2965PortAttributeHandler();
3217 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3218 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3219 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3222 @Deprecated public class RFC2965Spec extends org.apache.http.impl.cookie.RFC2109Spec {
3223 ctor @Deprecated public RFC2965Spec();
3224 ctor @Deprecated public RFC2965Spec(String[], boolean);
3227 @Deprecated public class RFC2965SpecFactory implements org.apache.http.cookie.CookieSpecFactory {
3228 ctor @Deprecated public RFC2965SpecFactory();
3229 …method @Deprecated public org.apache.http.cookie.CookieSpec newInstance(org.apache.http.params.Htt…
3232 …@Deprecated public class RFC2965VersionAttributeHandler implements org.apache.http.cookie.CookieAt…
3233 ctor @Deprecated public RFC2965VersionAttributeHandler();
3234 …method @Deprecated public boolean match(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3235 …method @Deprecated public void parse(org.apache.http.cookie.SetCookie, String) throws org.apache.h…
3236 …method @Deprecated public void validate(org.apache.http.cookie.Cookie, org.apache.http.cookie.Cook…
3243 @Deprecated public class EntityDeserializer {
3244 ctor @Deprecated public EntityDeserializer(org.apache.http.entity.ContentLengthStrategy);
3245 …method @Deprecated public org.apache.http.HttpEntity deserialize(org.apache.http.io.SessionInputBu…
3246 …method @Deprecated protected org.apache.http.entity.BasicHttpEntity doDeserialize(org.apache.http.…
3249 @Deprecated public class EntitySerializer {
3250 ctor @Deprecated public EntitySerializer(org.apache.http.entity.ContentLengthStrategy);
3251 …method @Deprecated protected java.io.OutputStream doSerialize(org.apache.http.io.SessionOutputBuff…
3252 …method @Deprecated public void serialize(org.apache.http.io.SessionOutputBuffer, org.apache.http.H…
3255 …@Deprecated public class LaxContentLengthStrategy implements org.apache.http.entity.ContentLengthS…
3256 ctor @Deprecated public LaxContentLengthStrategy();
3257 …method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http…
3260 …@Deprecated public class StrictContentLengthStrategy implements org.apache.http.entity.ContentLeng…
3261 ctor @Deprecated public StrictContentLengthStrategy();
3262 …method @Deprecated public long determineLength(org.apache.http.HttpMessage) throws org.apache.http…
3269 …@Deprecated public abstract class AbstractMessageParser implements org.apache.http.io.HttpMessageP…
3270 …ctor @Deprecated public AbstractMessageParser(org.apache.http.io.SessionInputBuffer, org.apache.ht…
3271 …method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException…
3272 …method @Deprecated protected abstract org.apache.http.HttpMessage parseHead(org.apache.http.io.Ses…
3273 …method @Deprecated public static org.apache.http.Header[] parseHeaders(org.apache.http.io.SessionI…
3274 field @Deprecated protected final org.apache.http.message.LineParser lineParser;
3277 …@Deprecated public abstract class AbstractMessageWriter implements org.apache.http.io.HttpMessageW…
3278 …ctor @Deprecated public AbstractMessageWriter(org.apache.http.io.SessionOutputBuffer, org.apache.h…
3279 …method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpExcep…
3280 …method @Deprecated protected abstract void writeHeadLine(org.apache.http.HttpMessage) throws java.…
3281 field @Deprecated protected final org.apache.http.util.CharArrayBuffer lineBuf;
3282 field @Deprecated protected final org.apache.http.message.LineFormatter lineFormatter;
3283 field @Deprecated protected final org.apache.http.io.SessionOutputBuffer sessionBuffer;
3286 …@Deprecated public abstract class AbstractSessionInputBuffer implements org.apache.http.io.Session…
3287 ctor @Deprecated public AbstractSessionInputBuffer();
3288 method @Deprecated protected int fillBuffer() throws java.io.IOException;
3289 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3290 method @Deprecated protected boolean hasBufferedData();
3291 …method @Deprecated protected void init(java.io.InputStream, int, org.apache.http.params.HttpParams…
3292 method @Deprecated public int read() throws java.io.IOException;
3293 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3294 method @Deprecated public int read(byte[]) throws java.io.IOException;
3295 …method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExce…
3296 method @Deprecated public String readLine() throws java.io.IOException;
3299 …@Deprecated public abstract class AbstractSessionOutputBuffer implements org.apache.http.io.Sessio…
3300 ctor @Deprecated public AbstractSessionOutputBuffer();
3301 method @Deprecated public void flush() throws java.io.IOException;
3302 method @Deprecated protected void flushBuffer() throws java.io.IOException;
3303 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3304 …method @Deprecated protected void init(java.io.OutputStream, int, org.apache.http.params.HttpParam…
3305 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3306 method @Deprecated public void write(byte[]) throws java.io.IOException;
3307 method @Deprecated public void write(int) throws java.io.IOException;
3308 method @Deprecated public void writeLine(String) throws java.io.IOException;
3309 …method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOEx…
3312 @Deprecated public class ChunkedInputStream extends java.io.InputStream {
3313 ctor @Deprecated public ChunkedInputStream(org.apache.http.io.SessionInputBuffer);
3314 method @Deprecated public org.apache.http.Header[] getFooters();
3315 method @Deprecated public int read() throws java.io.IOException;
3318 @Deprecated public class ChunkedOutputStream extends java.io.OutputStream {
3319 …ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer, int) throws ja…
3320 …ctor @Deprecated public ChunkedOutputStream(org.apache.http.io.SessionOutputBuffer) throws java.io…
3321 method @Deprecated public void finish() throws java.io.IOException;
3322 method @Deprecated protected void flushCache() throws java.io.IOException;
3323 …method @Deprecated protected void flushCacheWithAppend(byte[], int, int) throws java.io.IOExceptio…
3324 method @Deprecated public void write(int) throws java.io.IOException;
3325 method @Deprecated protected void writeClosingChunk() throws java.io.IOException;
3328 @Deprecated public class ContentLengthInputStream extends java.io.InputStream {
3329 ctor @Deprecated public ContentLengthInputStream(org.apache.http.io.SessionInputBuffer, long);
3330 method @Deprecated public int read() throws java.io.IOException;
3333 @Deprecated public class ContentLengthOutputStream extends java.io.OutputStream {
3334 ctor @Deprecated public ContentLengthOutputStream(org.apache.http.io.SessionOutputBuffer, long);
3335 method @Deprecated public void write(int) throws java.io.IOException;
3338 @Deprecated public class HttpRequestParser extends org.apache.http.impl.io.AbstractMessageParser {
3339 …ctor @Deprecated public HttpRequestParser(org.apache.http.io.SessionInputBuffer, org.apache.http.m…
3340 …method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInput…
3343 @Deprecated public class HttpRequestWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3344 …ctor @Deprecated public HttpRequestWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http.…
3345 …method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOExce…
3348 …@Deprecated public class HttpResponseParser extends org.apache.http.impl.io.AbstractMessageParser {
3349 …ctor @Deprecated public HttpResponseParser(org.apache.http.io.SessionInputBuffer, org.apache.http.…
3350 …method @Deprecated protected org.apache.http.HttpMessage parseHead(org.apache.http.io.SessionInput…
3353 …@Deprecated public class HttpResponseWriter extends org.apache.http.impl.io.AbstractMessageWriter {
3354 …ctor @Deprecated public HttpResponseWriter(org.apache.http.io.SessionOutputBuffer, org.apache.http…
3355 …method @Deprecated protected void writeHeadLine(org.apache.http.HttpMessage) throws java.io.IOExce…
3358 …@Deprecated public class HttpTransportMetricsImpl implements org.apache.http.io.HttpTransportMetri…
3359 ctor @Deprecated public HttpTransportMetricsImpl();
3360 method @Deprecated public long getBytesTransferred();
3361 method @Deprecated public void incrementBytesTransferred(long);
3362 method @Deprecated public void reset();
3363 method @Deprecated public void setBytesTransferred(long);
3366 @Deprecated public class IdentityInputStream extends java.io.InputStream {
3367 ctor @Deprecated public IdentityInputStream(org.apache.http.io.SessionInputBuffer);
3368 method @Deprecated public int read() throws java.io.IOException;
3371 @Deprecated public class IdentityOutputStream extends java.io.OutputStream {
3372 ctor @Deprecated public IdentityOutputStream(org.apache.http.io.SessionOutputBuffer);
3373 method @Deprecated public void write(int) throws java.io.IOException;
3376 …@Deprecated public class SocketInputBuffer extends org.apache.http.impl.io.AbstractSessionInputBuf…
3377 …ctor @Deprecated public SocketInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams)…
3378 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3379 method @Deprecated public boolean isStale() throws java.io.IOException;
3382 …@Deprecated public class SocketOutputBuffer extends org.apache.http.impl.io.AbstractSessionOutputB…
3383 …ctor @Deprecated public SocketOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams…
3390 @Deprecated public interface HttpMessageParser {
3391 …method @Deprecated public org.apache.http.HttpMessage parse() throws org.apache.http.HttpException…
3394 @Deprecated public interface HttpMessageWriter {
3395 …method @Deprecated public void write(org.apache.http.HttpMessage) throws org.apache.http.HttpExcep…
3398 @Deprecated public interface HttpTransportMetrics {
3399 method @Deprecated public long getBytesTransferred();
3400 method @Deprecated public void reset();
3403 @Deprecated public interface SessionInputBuffer {
3404 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3405 method @Deprecated public boolean isDataAvailable(int) throws java.io.IOException;
3406 method @Deprecated public int read(byte[], int, int) throws java.io.IOException;
3407 method @Deprecated public int read(byte[]) throws java.io.IOException;
3408 method @Deprecated public int read() throws java.io.IOException;
3409 …method @Deprecated public int readLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOExce…
3410 method @Deprecated public String readLine() throws java.io.IOException;
3413 @Deprecated public interface SessionOutputBuffer {
3414 method @Deprecated public void flush() throws java.io.IOException;
3415 method @Deprecated public org.apache.http.io.HttpTransportMetrics getMetrics();
3416 method @Deprecated public void write(byte[], int, int) throws java.io.IOException;
3417 method @Deprecated public void write(byte[]) throws java.io.IOException;
3418 method @Deprecated public void write(int) throws java.io.IOException;
3419 method @Deprecated public void writeLine(String) throws java.io.IOException;
3420 …method @Deprecated public void writeLine(org.apache.http.util.CharArrayBuffer) throws java.io.IOEx…
3427 @Deprecated public abstract class AbstractHttpMessage implements org.apache.http.HttpMessage {
3428 ctor @Deprecated protected AbstractHttpMessage(org.apache.http.params.HttpParams);
3429 ctor @Deprecated protected AbstractHttpMessage();
3430 method @Deprecated public void addHeader(org.apache.http.Header);
3431 method @Deprecated public void addHeader(String, String);
3432 method @Deprecated public boolean containsHeader(String);
3433 method @Deprecated public org.apache.http.Header[] getAllHeaders();
3434 method @Deprecated public org.apache.http.Header getFirstHeader(String);
3435 method @Deprecated public org.apache.http.Header[] getHeaders(String);
3436 method @Deprecated public org.apache.http.Header getLastHeader(String);
3437 method @Deprecated public org.apache.http.params.HttpParams getParams();
3438 method @Deprecated public org.apache.http.HeaderIterator headerIterator();
3439 method @Deprecated public org.apache.http.HeaderIterator headerIterator(String);
3440 method @Deprecated public void removeHeader(org.apache.http.Header);
3441 method @Deprecated public void removeHeaders(String);
3442 method @Deprecated public void setHeader(org.apache.http.Header);
3443 method @Deprecated public void setHeader(String, String);
3444 method @Deprecated public void setHeaders(org.apache.http.Header[]);
3445 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3446 field @Deprecated protected org.apache.http.message.HeaderGroup headergroup;
3447 field @Deprecated protected org.apache.http.params.HttpParams params;
3450 @Deprecated public class BasicHeader implements java.lang.Cloneable org.apache.http.Header {
3451 ctor @Deprecated public BasicHeader(String, String);
3452 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3453 …method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.Par…
3454 method @Deprecated public String getName();
3455 method @Deprecated public String getValue();
3458 …@Deprecated public class BasicHeaderElement implements java.lang.Cloneable org.apache.http.HeaderE…
3459 ctor @Deprecated public BasicHeaderElement(String, String, org.apache.http.NameValuePair[]);
3460 ctor @Deprecated public BasicHeaderElement(String, String);
3461 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3462 method @Deprecated public String getName();
3463 method @Deprecated public org.apache.http.NameValuePair getParameter(int);
3464 method @Deprecated public org.apache.http.NameValuePair getParameterByName(String);
3465 method @Deprecated public int getParameterCount();
3466 method @Deprecated public org.apache.http.NameValuePair[] getParameters();
3467 method @Deprecated public String getValue();
3470 …@Deprecated public class BasicHeaderElementIterator implements org.apache.http.HeaderElementIterat…
3471 …ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator, org.apache.http…
3472 ctor @Deprecated public BasicHeaderElementIterator(org.apache.http.HeaderIterator);
3473 method @Deprecated public boolean hasNext();
3474 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3475 …method @Deprecated public org.apache.http.HeaderElement nextElement() throws java.util.NoSuchEleme…
3476 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3479 @Deprecated public class BasicHeaderIterator implements org.apache.http.HeaderIterator {
3480 ctor @Deprecated public BasicHeaderIterator(org.apache.http.Header[], String);
3481 method @Deprecated protected boolean filterHeader(int);
3482 method @Deprecated protected int findNext(int);
3483 method @Deprecated public boolean hasNext();
3484 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3485 …method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementExcept…
3486 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3487 field @Deprecated protected final org.apache.http.Header[] allHeaders;
3488 field @Deprecated protected int currentIndex;
3489 field @Deprecated protected String headerName;
3492 …@Deprecated public class BasicHeaderValueFormatter implements org.apache.http.message.HeaderValueF…
3493 ctor @Deprecated public BasicHeaderValueFormatter();
3494 …method @Deprecated protected void doFormatValue(org.apache.http.util.CharArrayBuffer, String, bool…
3495 method @Deprecated protected int estimateElementsLen(org.apache.http.HeaderElement[]);
3496 method @Deprecated protected int estimateHeaderElementLen(org.apache.http.HeaderElement);
3497 method @Deprecated protected int estimateNameValuePairLen(org.apache.http.NameValuePair);
3498 method @Deprecated protected int estimateParametersLen(org.apache.http.NameValuePair[]);
3499 …method @Deprecated public static final String formatElements(org.apache.http.HeaderElement[], bool…
3500 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util…
3501 …method @Deprecated public static final String formatHeaderElement(org.apache.http.HeaderElement, b…
3502 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http…
3503 …method @Deprecated public static final String formatNameValuePair(org.apache.http.NameValuePair, b…
3504 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http…
3505 …method @Deprecated public static final String formatParameters(org.apache.http.NameValuePair[], bo…
3506 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.ut…
3507 method @Deprecated protected boolean isSeparator(char);
3508 method @Deprecated protected boolean isUnsafe(char);
3509 field @Deprecated public static final org.apache.http.message.BasicHeaderValueFormatter DEFAULT;
3510 field @Deprecated public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
3511 field @Deprecated public static final String UNSAFE_CHARS = "\"\\";
3514 …@Deprecated public class BasicHeaderValueParser implements org.apache.http.message.HeaderValuePars…
3515 ctor @Deprecated public BasicHeaderValueParser();
3516 …method @Deprecated protected org.apache.http.HeaderElement createHeaderElement(String, String, org…
3517 method @Deprecated protected org.apache.http.NameValuePair createNameValuePair(String, String);
3518 …method @Deprecated public static final org.apache.http.HeaderElement[] parseElements(String, org.a…
3519 …method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharA…
3520 …method @Deprecated public static final org.apache.http.HeaderElement parseHeaderElement(String, or…
3521 …method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.Ch…
3522 …method @Deprecated public static final org.apache.http.NameValuePair parseNameValuePair(String, or…
3523 …method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.Ch…
3524 …method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.Ch…
3525 …method @Deprecated public static final org.apache.http.NameValuePair[] parseParameters(String, org…
3526 …method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.Cha…
3527 field @Deprecated public static final org.apache.http.message.BasicHeaderValueParser DEFAULT;
3530 …@Deprecated public class BasicHttpEntityEnclosingRequest extends org.apache.http.message.BasicHttp…
3531 ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String);
3532 …ctor @Deprecated public BasicHttpEntityEnclosingRequest(String, String, org.apache.http.ProtocolVe…
3533 ctor @Deprecated public BasicHttpEntityEnclosingRequest(org.apache.http.RequestLine);
3534 method @Deprecated public boolean expectContinue();
3535 method @Deprecated public org.apache.http.HttpEntity getEntity();
3536 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3539 …@Deprecated public class BasicHttpRequest extends org.apache.http.message.AbstractHttpMessage impl…
3540 ctor @Deprecated public BasicHttpRequest(String, String);
3541 ctor @Deprecated public BasicHttpRequest(String, String, org.apache.http.ProtocolVersion);
3542 ctor @Deprecated public BasicHttpRequest(org.apache.http.RequestLine);
3543 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3544 method @Deprecated public org.apache.http.RequestLine getRequestLine();
3547 …@Deprecated public class BasicHttpResponse extends org.apache.http.message.AbstractHttpMessage imp…
3548 …ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine, org.apache.http.ReasonPhrase…
3549 ctor @Deprecated public BasicHttpResponse(org.apache.http.StatusLine);
3550 ctor @Deprecated public BasicHttpResponse(org.apache.http.ProtocolVersion, int, String);
3551 method @Deprecated public org.apache.http.HttpEntity getEntity();
3552 method @Deprecated public java.util.Locale getLocale();
3553 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3554 method @Deprecated protected String getReason(int);
3555 method @Deprecated public org.apache.http.StatusLine getStatusLine();
3556 method @Deprecated public void setEntity(org.apache.http.HttpEntity);
3557 method @Deprecated public void setLocale(java.util.Locale);
3558 method @Deprecated public void setReasonPhrase(String);
3559 method @Deprecated public void setStatusCode(int);
3560 method @Deprecated public void setStatusLine(org.apache.http.StatusLine);
3561 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int);
3562 method @Deprecated public void setStatusLine(org.apache.http.ProtocolVersion, int, String);
3565 @Deprecated public class BasicLineFormatter implements org.apache.http.message.LineFormatter {
3566 ctor @Deprecated public BasicLineFormatter();
3567 …method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.ht…
3568 …method @Deprecated protected void doFormatHeader(org.apache.http.util.CharArrayBuffer, org.apache.…
3569 …method @Deprecated protected void doFormatRequestLine(org.apache.http.util.CharArrayBuffer, org.ap…
3570 …method @Deprecated protected void doFormatStatusLine(org.apache.http.util.CharArrayBuffer, org.apa…
3571 method @Deprecated protected int estimateProtocolVersionLen(org.apache.http.ProtocolVersion);
3572 …method @Deprecated public static final String formatHeader(org.apache.http.Header, org.apache.http…
3573 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.C…
3574 …method @Deprecated public static final String formatProtocolVersion(org.apache.http.ProtocolVersio…
3575 …method @Deprecated public static final String formatRequestLine(org.apache.http.RequestLine, org.a…
3576 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.u…
3577 …method @Deprecated public static final String formatStatusLine(org.apache.http.StatusLine, org.apa…
3578 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.ut…
3579 …method @Deprecated protected org.apache.http.util.CharArrayBuffer initBuffer(org.apache.http.util.…
3580 field @Deprecated public static final org.apache.http.message.BasicLineFormatter DEFAULT;
3583 @Deprecated public class BasicLineParser implements org.apache.http.message.LineParser {
3584 ctor @Deprecated public BasicLineParser(org.apache.http.ProtocolVersion);
3585 ctor @Deprecated public BasicLineParser();
3586 method @Deprecated protected org.apache.http.ProtocolVersion createProtocolVersion(int, int);
3587 …method @Deprecated protected org.apache.http.RequestLine createRequestLine(String, String, org.apa…
3588 …method @Deprecated protected org.apache.http.StatusLine createStatusLine(org.apache.http.ProtocolV…
3589 …method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apa…
3590 …method @Deprecated public static final org.apache.http.Header parseHeader(String, org.apache.http.…
3591 …method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer)…
3592 …method @Deprecated public static final org.apache.http.ProtocolVersion parseProtocolVersion(String…
3593 …method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.uti…
3594 …method @Deprecated public static final org.apache.http.RequestLine parseRequestLine(String, org.ap…
3595 …method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharAr…
3596 …method @Deprecated public static final org.apache.http.StatusLine parseStatusLine(String, org.apac…
3597 …method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArra…
3598 …method @Deprecated protected void skipWhitespace(org.apache.http.util.CharArrayBuffer, org.apache.…
3599 field @Deprecated public static final org.apache.http.message.BasicLineParser DEFAULT;
3600 field @Deprecated protected final org.apache.http.ProtocolVersion protocol;
3603 @Deprecated public class BasicListHeaderIterator implements org.apache.http.HeaderIterator {
3604 ctor @Deprecated public BasicListHeaderIterator(java.util.List, String);
3605 method @Deprecated protected boolean filterHeader(int);
3606 method @Deprecated protected int findNext(int);
3607 method @Deprecated public boolean hasNext();
3608 method @Deprecated public final Object next() throws java.util.NoSuchElementException;
3609 …method @Deprecated public org.apache.http.Header nextHeader() throws java.util.NoSuchElementExcept…
3610 method @Deprecated public void remove() throws java.lang.UnsupportedOperationException;
3611 field @Deprecated protected final java.util.List allHeaders;
3612 field @Deprecated protected int currentIndex;
3613 field @Deprecated protected String headerName;
3614 field @Deprecated protected int lastIndex;
3617 …@Deprecated public class BasicNameValuePair implements java.lang.Cloneable org.apache.http.NameVal…
3618 ctor @Deprecated public BasicNameValuePair(String, String);
3619 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3620 method @Deprecated public String getName();
3621 method @Deprecated public String getValue();
3624 …@Deprecated public class BasicRequestLine implements java.lang.Cloneable org.apache.http.RequestLi…
3625 ctor @Deprecated public BasicRequestLine(String, String, org.apache.http.ProtocolVersion);
3626 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3627 method @Deprecated public String getMethod();
3628 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3629 method @Deprecated public String getUri();
3632 …@Deprecated public class BasicStatusLine implements java.lang.Cloneable org.apache.http.StatusLine…
3633 ctor @Deprecated public BasicStatusLine(org.apache.http.ProtocolVersion, int, String);
3634 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3635 method @Deprecated public org.apache.http.ProtocolVersion getProtocolVersion();
3636 method @Deprecated public String getReasonPhrase();
3637 method @Deprecated public int getStatusCode();
3640 @Deprecated public class BasicTokenIterator implements org.apache.http.TokenIterator {
3641 ctor @Deprecated public BasicTokenIterator(org.apache.http.HeaderIterator);
3642 method @Deprecated protected String createToken(String, int, int);
3643 method @Deprecated protected int findNext(int) throws org.apache.http.ParseException;
3644 method @Deprecated protected int findTokenEnd(int);
3645 method @Deprecated protected int findTokenSeparator(int);
3646 method @Deprecated protected int findTokenStart(int);
3647 method @Deprecated public boolean hasNext();
3648 method @Deprecated protected boolean isHttpSeparator(char);
3649 method @Deprecated protected boolean isTokenChar(char);
3650 method @Deprecated protected boolean isTokenSeparator(char);
3651 method @Deprecated protected boolean isWhitespace(char);
3652 …method @Deprecated public final Object next() throws java.util.NoSuchElementException, org.apache.…
3653 …method @Deprecated public String nextToken() throws java.util.NoSuchElementException, org.apache.h…
3654 method @Deprecated public final void remove() throws java.lang.UnsupportedOperationException;
3655 field @Deprecated public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
3656 field @Deprecated protected String currentHeader;
3657 field @Deprecated protected String currentToken;
3658 field @Deprecated protected final org.apache.http.HeaderIterator headerIt;
3659 field @Deprecated protected int searchPos;
3662 …@Deprecated public class BufferedHeader implements java.lang.Cloneable org.apache.http.FormattedHe…
3663 …ctor @Deprecated public BufferedHeader(org.apache.http.util.CharArrayBuffer) throws org.apache.htt…
3664 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3665 method @Deprecated public org.apache.http.util.CharArrayBuffer getBuffer();
3666 …method @Deprecated public org.apache.http.HeaderElement[] getElements() throws org.apache.http.Par…
3667 method @Deprecated public String getName();
3668 method @Deprecated public String getValue();
3669 method @Deprecated public int getValuePos();
3672 @Deprecated public class HeaderGroup implements java.lang.Cloneable {
3673 ctor @Deprecated public HeaderGroup();
3674 method @Deprecated public void addHeader(org.apache.http.Header);
3675 method @Deprecated public void clear();
3676 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3677 method @Deprecated public boolean containsHeader(String);
3678 method @Deprecated public org.apache.http.message.HeaderGroup copy();
3679 method @Deprecated public org.apache.http.Header[] getAllHeaders();
3680 method @Deprecated public org.apache.http.Header getCondensedHeader(String);
3681 method @Deprecated public org.apache.http.Header getFirstHeader(String);
3682 method @Deprecated public org.apache.http.Header[] getHeaders(String);
3683 method @Deprecated public org.apache.http.Header getLastHeader(String);
3684 method @Deprecated public org.apache.http.HeaderIterator iterator();
3685 method @Deprecated public org.apache.http.HeaderIterator iterator(String);
3686 method @Deprecated public void removeHeader(org.apache.http.Header);
3687 method @Deprecated public void setHeaders(org.apache.http.Header[]);
3688 method @Deprecated public void updateHeader(org.apache.http.Header);
3691 @Deprecated public interface HeaderValueFormatter {
3692 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatElements(org.apache.http.util…
3693 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeaderElement(org.apache.http…
3694 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatNameValuePair(org.apache.http…
3695 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatParameters(org.apache.http.ut…
3698 @Deprecated public interface HeaderValueParser {
3699 …method @Deprecated public org.apache.http.HeaderElement[] parseElements(org.apache.http.util.CharA…
3700 …method @Deprecated public org.apache.http.HeaderElement parseHeaderElement(org.apache.http.util.Ch…
3701 …method @Deprecated public org.apache.http.NameValuePair parseNameValuePair(org.apache.http.util.Ch…
3702 …method @Deprecated public org.apache.http.NameValuePair[] parseParameters(org.apache.http.util.Cha…
3705 @Deprecated public interface LineFormatter {
3706 …method @Deprecated public org.apache.http.util.CharArrayBuffer appendProtocolVersion(org.apache.ht…
3707 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatHeader(org.apache.http.util.C…
3708 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatRequestLine(org.apache.http.u…
3709 …method @Deprecated public org.apache.http.util.CharArrayBuffer formatStatusLine(org.apache.http.ut…
3712 @Deprecated public interface LineParser {
3713 …method @Deprecated public boolean hasProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apa…
3714 …method @Deprecated public org.apache.http.Header parseHeader(org.apache.http.util.CharArrayBuffer)…
3715 …method @Deprecated public org.apache.http.ProtocolVersion parseProtocolVersion(org.apache.http.uti…
3716 …method @Deprecated public org.apache.http.RequestLine parseRequestLine(org.apache.http.util.CharAr…
3717 …method @Deprecated public org.apache.http.StatusLine parseStatusLine(org.apache.http.util.CharArra…
3720 @Deprecated public class ParserCursor {
3721 ctor @Deprecated public ParserCursor(int, int);
3722 method @Deprecated public boolean atEnd();
3723 method @Deprecated public int getLowerBound();
3724 method @Deprecated public int getPos();
3725 method @Deprecated public int getUpperBound();
3726 method @Deprecated public void updatePos(int);
3733 …@Deprecated public abstract class AbstractHttpParams implements org.apache.http.params.HttpParams {
3734 ctor @Deprecated protected AbstractHttpParams();
3735 method @Deprecated public boolean getBooleanParameter(String, boolean);
3736 method @Deprecated public double getDoubleParameter(String, double);
3737 method @Deprecated public int getIntParameter(String, int);
3738 method @Deprecated public long getLongParameter(String, long);
3739 method @Deprecated public boolean isParameterFalse(String);
3740 method @Deprecated public boolean isParameterTrue(String);
3741 … method @Deprecated public org.apache.http.params.HttpParams setBooleanParameter(String, boolean);
3742 method @Deprecated public org.apache.http.params.HttpParams setDoubleParameter(String, double);
3743 method @Deprecated public org.apache.http.params.HttpParams setIntParameter(String, int);
3744 method @Deprecated public org.apache.http.params.HttpParams setLongParameter(String, long);
3747 …@Deprecated public final class BasicHttpParams extends org.apache.http.params.AbstractHttpParams i…
3748 ctor @Deprecated public BasicHttpParams();
3749 method @Deprecated public void clear();
3750 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3751 method @Deprecated public org.apache.http.params.HttpParams copy();
3752 method @Deprecated protected void copyParams(org.apache.http.params.HttpParams);
3753 method @Deprecated public Object getParameter(String);
3754 method @Deprecated public boolean isParameterSet(String);
3755 method @Deprecated public boolean isParameterSetLocally(String);
3756 method @Deprecated public boolean removeParameter(String);
3757 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3758 method @Deprecated public void setParameters(String[], Object);
3761 @Deprecated public interface CoreProtocolPNames {
3762 …field @Deprecated public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset…
3763 …field @Deprecated public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset…
3764 field @Deprecated public static final String ORIGIN_SERVER = "http.origin-server";
3765 field @Deprecated public static final String PROTOCOL_VERSION = "http.protocol.version";
3766 …field @Deprecated public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-tran…
3767 field @Deprecated public static final String USER_AGENT = "http.useragent";
3768 …field @Deprecated public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue";
3769 …field @Deprecated public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue";
3772 …@Deprecated public final class DefaultedHttpParams extends org.apache.http.params.AbstractHttpPara…
3773 …ctor @Deprecated public DefaultedHttpParams(org.apache.http.params.HttpParams, org.apache.http.par…
3774 method @Deprecated public org.apache.http.params.HttpParams copy();
3775 method @Deprecated public org.apache.http.params.HttpParams getDefaults();
3776 method @Deprecated public Object getParameter(String);
3777 method @Deprecated public boolean removeParameter(String);
3778 method @Deprecated public org.apache.http.params.HttpParams setParameter(String, Object);
3781 @Deprecated public abstract class HttpAbstractParamBean {
3782 ctor @Deprecated public HttpAbstractParamBean(org.apache.http.params.HttpParams);
3783 field @Deprecated protected final org.apache.http.params.HttpParams params;
3786 …@Deprecated public class HttpConnectionParamBean extends org.apache.http.params.HttpAbstractParamB…
3787 ctor @Deprecated public HttpConnectionParamBean(org.apache.http.params.HttpParams);
3788 method @Deprecated public void setConnectionTimeout(int);
3789 method @Deprecated public void setLinger(int);
3790 method @Deprecated public void setSoTimeout(int);
3791 method @Deprecated public void setSocketBufferSize(int);
3792 method @Deprecated public void setStaleCheckingEnabled(boolean);
3793 method @Deprecated public void setTcpNoDelay(boolean);
3796 …@Deprecated public class HttpProtocolParamBean extends org.apache.http.params.HttpAbstractParamBea…
3797 ctor @Deprecated public HttpProtocolParamBean(org.apache.http.params.HttpParams);
3798 method @Deprecated public void setContentCharset(String);
3799 method @Deprecated public void setHttpElementCharset(String);
3800 method @Deprecated public void setUseExpectContinue(boolean);
3801 method @Deprecated public void setUserAgent(String);
3802 method @Deprecated public void setVersion(org.apache.http.HttpVersion);
3805 …@Deprecated public final class HttpProtocolParams implements org.apache.http.params.CoreProtocolPN…
3806 method @Deprecated public static String getContentCharset(org.apache.http.params.HttpParams);
3807 … method @Deprecated public static String getHttpElementCharset(org.apache.http.params.HttpParams);
3808 method @Deprecated public static String getUserAgent(org.apache.http.params.HttpParams);
3809 …method @Deprecated public static org.apache.http.ProtocolVersion getVersion(org.apache.http.params…
3810 …method @Deprecated public static void setContentCharset(org.apache.http.params.HttpParams, String);
3811 …method @Deprecated public static void setHttpElementCharset(org.apache.http.params.HttpParams, Str…
3812 …method @Deprecated public static void setUseExpectContinue(org.apache.http.params.HttpParams, bool…
3813 method @Deprecated public static void setUserAgent(org.apache.http.params.HttpParams, String);
3814 …method @Deprecated public static void setVersion(org.apache.http.params.HttpParams, org.apache.htt…
3815 method @Deprecated public static boolean useExpectContinue(org.apache.http.params.HttpParams);
3822 @Deprecated public class BasicHttpContext implements org.apache.http.protocol.HttpContext {
3823 ctor @Deprecated public BasicHttpContext();
3824 ctor @Deprecated public BasicHttpContext(org.apache.http.protocol.HttpContext);
3825 method @Deprecated public Object getAttribute(String);
3826 method @Deprecated public Object removeAttribute(String);
3827 method @Deprecated public void setAttribute(String, Object);
3830 …@Deprecated public final class BasicHttpProcessor implements java.lang.Cloneable org.apache.http.p…
3831 ctor @Deprecated public BasicHttpProcessor();
3832 method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor);
3833 method @Deprecated public void addInterceptor(org.apache.http.HttpRequestInterceptor, int);
3834 method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor);
3835 method @Deprecated public void addInterceptor(org.apache.http.HttpResponseInterceptor, int);
3836 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3837 … method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3838 …method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int…
3839 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3840 method @Deprecated public void clearInterceptors();
3841 method @Deprecated public void clearRequestInterceptors();
3842 method @Deprecated public void clearResponseInterceptors();
3843 method @Deprecated public Object clone() throws java.lang.CloneNotSupportedException;
3844 method @Deprecated public org.apache.http.protocol.BasicHttpProcessor copy();
3845 method @Deprecated protected void copyInterceptors(org.apache.http.protocol.BasicHttpProcessor);
3846 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3847 method @Deprecated public int getRequestInterceptorCount();
3848 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3849 method @Deprecated public int getResponseInterceptorCount();
3850 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
3851 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
3852 method @Deprecated public void removeRequestInterceptorByClass(Class);
3853 method @Deprecated public void removeResponseInterceptorByClass(Class);
3854 method @Deprecated public void setInterceptors(java.util.List);
3855 field @Deprecated protected java.util.List requestInterceptors;
3856 field @Deprecated protected java.util.List responseInterceptors;
3859 …@Deprecated public final class DefaultedHttpContext implements org.apache.http.protocol.HttpContex…
3860 …ctor @Deprecated public DefaultedHttpContext(org.apache.http.protocol.HttpContext, org.apache.http…
3861 method @Deprecated public Object getAttribute(String);
3862 method @Deprecated public org.apache.http.protocol.HttpContext getDefaults();
3863 method @Deprecated public Object removeAttribute(String);
3864 method @Deprecated public void setAttribute(String, Object);
3867 @Deprecated public interface ExecutionContext {
3868 field @Deprecated public static final String HTTP_CONNECTION = "http.connection";
3869 field @Deprecated public static final String HTTP_PROXY_HOST = "http.proxy_host";
3870 field @Deprecated public static final String HTTP_REQUEST = "http.request";
3871 field @Deprecated public static final String HTTP_REQ_SENT = "http.request_sent";
3872 field @Deprecated public static final String HTTP_RESPONSE = "http.response";
3873 field @Deprecated public static final String HTTP_TARGET_HOST = "http.target_host";
3876 @Deprecated public final class HTTP {
3877 method @Deprecated public static boolean isWhitespace(char);
3878 field @Deprecated public static final String ASCII = "ASCII";
3879 field @Deprecated public static final String CHARSET_PARAM = "; charset=";
3880 field @Deprecated public static final String CHUNK_CODING = "chunked";
3881 field @Deprecated public static final String CONN_CLOSE = "Close";
3882 field @Deprecated public static final String CONN_DIRECTIVE = "Connection";
3883 field @Deprecated public static final String CONN_KEEP_ALIVE = "Keep-Alive";
3884 field @Deprecated public static final String CONTENT_ENCODING = "Content-Encoding";
3885 field @Deprecated public static final String CONTENT_LEN = "Content-Length";
3886 field @Deprecated public static final String CONTENT_TYPE = "Content-Type";
3887 field @Deprecated public static final int CR = 13; // 0xd
3888 field @Deprecated public static final String DATE_HEADER = "Date";
3889 field @Deprecated public static final String DEFAULT_CONTENT_CHARSET = "ISO-8859-1";
3890 field @Deprecated public static final String DEFAULT_CONTENT_TYPE = "application/octet-stream";
3891 field @Deprecated public static final String DEFAULT_PROTOCOL_CHARSET = "US-ASCII";
3892 field @Deprecated public static final String EXPECT_CONTINUE = "100-continue";
3893 field @Deprecated public static final String EXPECT_DIRECTIVE = "Expect";
3894 field @Deprecated public static final int HT = 9; // 0x9
3895 field @Deprecated public static final String IDENTITY_CODING = "identity";
3896 field @Deprecated public static final String ISO_8859_1 = "ISO-8859-1";
3897 field @Deprecated public static final int LF = 10; // 0xa
3898 field @Deprecated public static final String OCTET_STREAM_TYPE = "application/octet-stream";
3899 field @Deprecated public static final String PLAIN_TEXT_TYPE = "text/plain";
3900 field @Deprecated public static final String SERVER_HEADER = "Server";
3901 field @Deprecated public static final int SP = 32; // 0x20
3902 field @Deprecated public static final String TARGET_HOST = "Host";
3903 field @Deprecated public static final String TRANSFER_ENCODING = "Transfer-Encoding";
3904 field @Deprecated public static final String USER_AGENT = "User-Agent";
3905 field @Deprecated public static final String US_ASCII = "US-ASCII";
3906 field @Deprecated public static final String UTF_16 = "UTF-16";
3907 field @Deprecated public static final String UTF_8 = "UTF-8";
3910 @Deprecated public interface HttpContext {
3911 method @Deprecated public Object getAttribute(String);
3912 method @Deprecated public Object removeAttribute(String);
3913 method @Deprecated public void setAttribute(String, Object);
3914 field @Deprecated public static final String RESERVED_PREFIX = "http.";
3917 @Deprecated public class HttpDateGenerator {
3918 ctor @Deprecated public HttpDateGenerator();
3919 method @Deprecated public String getCurrentDate();
3920 field @Deprecated public static final java.util.TimeZone GMT;
3921 field @Deprecated public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
3924 @Deprecated public interface HttpExpectationVerifier {
3925 …method @Deprecated public void verify(org.apache.http.HttpRequest, org.apache.http.HttpResponse, o…
3928 …@Deprecated public interface HttpProcessor extends org.apache.http.HttpRequestInterceptor org.apac…
3931 @Deprecated public class HttpRequestExecutor {
3932 ctor @Deprecated public HttpRequestExecutor();
3933 …method @Deprecated protected boolean canResponseHaveBody(org.apache.http.HttpRequest, org.apache.h…
3934 …method @Deprecated protected org.apache.http.HttpResponse doReceiveResponse(org.apache.http.HttpRe…
3935 …method @Deprecated protected org.apache.http.HttpResponse doSendRequest(org.apache.http.HttpReques…
3936 …method @Deprecated public org.apache.http.HttpResponse execute(org.apache.http.HttpRequest, org.ap…
3937 …method @Deprecated public void postProcess(org.apache.http.HttpResponse, org.apache.http.protocol.…
3938 …method @Deprecated public void preProcess(org.apache.http.HttpRequest, org.apache.http.protocol.Ht…
3941 @Deprecated public interface HttpRequestHandler {
3942 …method @Deprecated public void handle(org.apache.http.HttpRequest, org.apache.http.HttpResponse, o…
3945 …@Deprecated public class HttpRequestHandlerRegistry implements org.apache.http.protocol.HttpReques…
3946 ctor @Deprecated public HttpRequestHandlerRegistry();
3947 method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3948 method @Deprecated protected boolean matchUriRequestPattern(String, String);
3949 method @Deprecated public void register(String, org.apache.http.protocol.HttpRequestHandler);
3950 method @Deprecated public void setHandlers(java.util.Map);
3951 method @Deprecated public void unregister(String);
3954 @Deprecated public interface HttpRequestHandlerResolver {
3955 method @Deprecated public org.apache.http.protocol.HttpRequestHandler lookup(String);
3958 @Deprecated public interface HttpRequestInterceptorList {
3959 method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor);
3960 … method @Deprecated public void addRequestInterceptor(org.apache.http.HttpRequestInterceptor, int);
3961 method @Deprecated public void clearRequestInterceptors();
3962 method @Deprecated public org.apache.http.HttpRequestInterceptor getRequestInterceptor(int);
3963 method @Deprecated public int getRequestInterceptorCount();
3964 method @Deprecated public void removeRequestInterceptorByClass(Class);
3965 method @Deprecated public void setInterceptors(java.util.List);
3968 @Deprecated public interface HttpResponseInterceptorList {
3969 method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor);
3970 …method @Deprecated public void addResponseInterceptor(org.apache.http.HttpResponseInterceptor, int…
3971 method @Deprecated public void clearResponseInterceptors();
3972 method @Deprecated public org.apache.http.HttpResponseInterceptor getResponseInterceptor(int);
3973 method @Deprecated public int getResponseInterceptorCount();
3974 method @Deprecated public void removeResponseInterceptorByClass(Class);
3975 method @Deprecated public void setInterceptors(java.util.List);
3978 @Deprecated public class HttpService {
3979 …ctor @Deprecated public HttpService(org.apache.http.protocol.HttpProcessor, org.apache.http.Connec…
3980 …method @Deprecated protected void doService(org.apache.http.HttpRequest, org.apache.http.HttpRespo…
3981 method @Deprecated public org.apache.http.params.HttpParams getParams();
3982 …method @Deprecated protected void handleException(org.apache.http.HttpException, org.apache.http.H…
3983 …method @Deprecated public void handleRequest(org.apache.http.HttpServerConnection, org.apache.http…
3984 method @Deprecated public void setConnReuseStrategy(org.apache.http.ConnectionReuseStrategy);
3985 …method @Deprecated public void setExpectationVerifier(org.apache.http.protocol.HttpExpectationVeri…
3986 …method @Deprecated public void setHandlerResolver(org.apache.http.protocol.HttpRequestHandlerResol…
3987 method @Deprecated public void setHttpProcessor(org.apache.http.protocol.HttpProcessor);
3988 method @Deprecated public void setParams(org.apache.http.params.HttpParams);
3989 method @Deprecated public void setResponseFactory(org.apache.http.HttpResponseFactory);
3992 @Deprecated public class RequestConnControl implements org.apache.http.HttpRequestInterceptor {
3993 ctor @Deprecated public RequestConnControl();
3994 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
3997 @Deprecated public class RequestContent implements org.apache.http.HttpRequestInterceptor {
3998 ctor @Deprecated public RequestContent();
3999 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4002 @Deprecated public class RequestDate implements org.apache.http.HttpRequestInterceptor {
4003 ctor @Deprecated public RequestDate();
4004 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4007 @Deprecated public class RequestExpectContinue implements org.apache.http.HttpRequestInterceptor {
4008 ctor @Deprecated public RequestExpectContinue();
4009 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4012 @Deprecated public class RequestTargetHost implements org.apache.http.HttpRequestInterceptor {
4013 ctor @Deprecated public RequestTargetHost();
4014 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4017 @Deprecated public class RequestUserAgent implements org.apache.http.HttpRequestInterceptor {
4018 ctor @Deprecated public RequestUserAgent();
4019 …method @Deprecated public void process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpC…
4022 @Deprecated public class ResponseConnControl implements org.apache.http.HttpResponseInterceptor {
4023 ctor @Deprecated public ResponseConnControl();
4024 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4027 @Deprecated public class ResponseContent implements org.apache.http.HttpResponseInterceptor {
4028 ctor @Deprecated public ResponseContent();
4029 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4032 @Deprecated public class ResponseDate implements org.apache.http.HttpResponseInterceptor {
4033 ctor @Deprecated public ResponseDate();
4034 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4037 @Deprecated public class ResponseServer implements org.apache.http.HttpResponseInterceptor {
4038 ctor @Deprecated public ResponseServer();
4039 …method @Deprecated public void process(org.apache.http.HttpResponse, org.apache.http.protocol.Http…
4042 @Deprecated public class SyncBasicHttpContext extends org.apache.http.protocol.BasicHttpContext {
4043 ctor @Deprecated public SyncBasicHttpContext(org.apache.http.protocol.HttpContext);
4046 @Deprecated public class UriPatternMatcher {
4047 ctor @Deprecated public UriPatternMatcher();
4048 method @Deprecated public Object lookup(String);
4049 method @Deprecated protected boolean matchUriRequestPattern(String, String);
4050 method @Deprecated public void register(String, Object);
4051 method @Deprecated public void setHandlers(java.util.Map);
4052 method @Deprecated public void unregister(String);
4059 @Deprecated public final class ByteArrayBuffer {
4060 ctor @Deprecated public ByteArrayBuffer(int);
4061 method @Deprecated public void append(byte[], int, int);
4062 method @Deprecated public void append(int);
4063 method @Deprecated public void append(char[], int, int);
4064 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4065 method @Deprecated public byte[] buffer();
4066 method @Deprecated public int byteAt(int);
4067 method @Deprecated public int capacity();
4068 method @Deprecated public void clear();
4069 method @Deprecated public boolean isEmpty();
4070 method @Deprecated public boolean isFull();
4071 method @Deprecated public int length();
4072 method @Deprecated public void setLength(int);
4073 method @Deprecated public byte[] toByteArray();
4076 @Deprecated public final class CharArrayBuffer {
4077 ctor @Deprecated public CharArrayBuffer(int);
4078 method @Deprecated public void append(char[], int, int);
4079 method @Deprecated public void append(String);
4080 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer, int, int);
4081 method @Deprecated public void append(org.apache.http.util.CharArrayBuffer);
4082 method @Deprecated public void append(char);
4083 method @Deprecated public void append(byte[], int, int);
4084 method @Deprecated public void append(org.apache.http.util.ByteArrayBuffer, int, int);
4085 method @Deprecated public void append(Object);
4086 method @Deprecated public char[] buffer();
4087 method @Deprecated public int capacity();
4088 method @Deprecated public char charAt(int);
4089 method @Deprecated public void clear();
4090 method @Deprecated public void ensureCapacity(int);
4091 method @Deprecated public int indexOf(int, int, int);
4092 method @Deprecated public int indexOf(int);
4093 method @Deprecated public boolean isEmpty();
4094 method @Deprecated public boolean isFull();
4095 method @Deprecated public int length();
4096 method @Deprecated public void setLength(int);
4097 method @Deprecated public String substring(int, int);
4098 method @Deprecated public String substringTrimmed(int, int);
4099 method @Deprecated public char[] toCharArray();
4102 @Deprecated public final class EncodingUtils {
4103 method @Deprecated public static byte[] getAsciiBytes(String);
4104 method @Deprecated public static String getAsciiString(byte[], int, int);
4105 method @Deprecated public static String getAsciiString(byte[]);
4106 method @Deprecated public static byte[] getBytes(String, String);
4107 method @Deprecated public static String getString(byte[], int, int, String);
4108 method @Deprecated public static String getString(byte[], String);
4111 @Deprecated public final class EntityUtils {
4112 …method @Deprecated public static String getContentCharSet(org.apache.http.HttpEntity) throws org.a…
4113 …method @Deprecated public static byte[] toByteArray(org.apache.http.HttpEntity) throws java.io.IOE…
4114 …method @Deprecated public static String toString(org.apache.http.HttpEntity, String) throws java.i…
4115 …method @Deprecated public static String toString(org.apache.http.HttpEntity) throws java.io.IOExce…
4118 @Deprecated public final class ExceptionUtils {
4119 method @Deprecated public static void initCause(Throwable, Throwable);
4122 @Deprecated public final class LangUtils {
4123 method @Deprecated public static boolean equals(Object, Object);
4124 method @Deprecated public static boolean equals(Object[], Object[]);
4125 method @Deprecated public static int hashCode(int, int);
4126 method @Deprecated public static int hashCode(int, boolean);
4127 method @Deprecated public static int hashCode(int, Object);
4128 field @Deprecated public static final int HASH_OFFSET = 37; // 0x25
4129 field @Deprecated public static final int HASH_SEED = 17; // 0x11
4132 @Deprecated public class VersionInfo {
4133 ctor @Deprecated protected VersionInfo(String, String, String, String, String);
4134 …method @Deprecated protected static final org.apache.http.util.VersionInfo fromMap(String, java.ut…
4135 method @Deprecated public final String getClassloader();
4136 method @Deprecated public final String getModule();
4137 method @Deprecated public final String getPackage();
4138 method @Deprecated public final String getRelease();
4139 method @Deprecated public final String getTimestamp();
4140 …method @Deprecated public static final org.apache.http.util.VersionInfo[] loadVersionInfo(String[]…
4141 …method @Deprecated public static final org.apache.http.util.VersionInfo loadVersionInfo(String, Cl…
4142 field @Deprecated public static final String PROPERTY_MODULE = "info.module";
4143 field @Deprecated public static final String PROPERTY_RELEASE = "info.release";
4144 field @Deprecated public static final String PROPERTY_TIMESTAMP = "info.timestamp";
4145 field @Deprecated public static final String UNAVAILABLE = "UNAVAILABLE";
4146 field @Deprecated public static final String VERSION_PROPERTY_FILE = "version.properties";