jericho 2002/10/23 09:27:19
Modified: httpclient/src/java/org/apache/commons/httpclient
Authenticator.java
Log:
- Fix accessors for static variables
Revision Changes Path
1.32 +6 -6 jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Authenticator.java
Index: Authenticator.java
===================================================================
RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Authenticator.java,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- Authenticator.java 23 Oct 2002 16:15:43 -0000 1.31
+++ Authenticator.java 23 Oct 2002 16:27:19 -0000 1.32
@@ -111,14 +111,14 @@
/**
* The boolean property name to turn on preemptive authentication.
*/
- private static final String PREEMPTIVE_PROPERTY =
+ public static final String PREEMPTIVE_PROPERTY =
"httpclient.authentication.preemptive";
/**
* The default property value for #PREEMPTIVE_PROPERTY.
*/
- private static final String PREEMPTIVE_DEFAULT = "false";
+ public static final String PREEMPTIVE_DEFAULT = "false";
/**
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@jakarta.apache.org>
|