Index: java/org/apache/commons/httpclient/HttpState.java =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpState.java,v retrieving revision 1.36 diff -u -r1.36 HttpState.java --- java/org/apache/commons/httpclient/HttpState.java 16 Sep 2004 06:46:31 -0000 1.36 +++ java/org/apache/commons/httpclient/HttpState.java 21 Sep 2004 01:58:12 -0000 @@ -86,6 +86,18 @@ private int cookiePolicy = -1; // -------------------------------------------------------- Class Variables + /** + * The boolean system property name to turn on preemptive authentication. + * @deprecated This field and feature will be removed following HttpClient 3.0. + */ + public static final String PREEMPTIVE_PROPERTY = "httpclient.authentication.preemptive"; + + /** + * The default value for {@link #PREEMPTIVE_PROPERTY}. + * @deprecated This field and feature will be removed following HttpClient 3.0. + */ + public static final String PREEMPTIVE_DEFAULT = "false"; + /** Log object for this class. */ private static final Log LOG = LogFactory.getLog(HttpState.class);