mbecke      2004/09/22 16:36:10

  Modified:    httpclient/src/java/org/apache/commons/httpclient
                        HttpState.java
  Log:
  Re-added HttpState.PREEMPTIVE*
  
  PR: 31323
  Submitted by: Michael Becke
  
  Revision  Changes    Path
  1.37      +16 -4     
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpState.java
  
  Index: HttpState.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpState.java,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- HttpState.java    16 Sep 2004 06:46:31 -0000      1.36
  +++ HttpState.java    22 Sep 2004 23:36:10 -0000      1.37
  @@ -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 [EMAIL PROTECTED] #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);
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to