rwaldhoff 01/08/20 10:13:17
Modified: httpclient/src/java/org/apache/commons/httpclient Tag:
rlwrefactoring Authenticator.java
Log:
javadoc fixes
Revision Changes Path
No revision
No revision
1.6.2.3 +11 -11
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.6.2.2
retrieving revision 1.6.2.3
diff -u -r1.6.2.2 -r1.6.2.3
--- Authenticator.java 2001/08/14 18:02:49 1.6.2.2
+++ Authenticator.java 2001/08/20 17:13:17 1.6.2.3
@@ -1,7 +1,7 @@
/*
- * $Header:
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Authenticator.java,v
1.6.2.2 2001/08/14 18:02:49 rwaldhoff Exp $
- * $Revision: 1.6.2.2 $
- * $Date: 2001/08/14 18:02:49 $
+ * $Header:
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Authenticator.java,v
1.6.2.3 2001/08/20 17:13:17 rwaldhoff Exp $
+ * $Revision: 1.6.2.3 $
+ * $Date: 2001/08/20 17:13:17 $
*
* ====================================================================
*
@@ -74,7 +74,7 @@
* responses to HTTP authentication challenges.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Remy Maucherat</a>
- * @version $Id: Authenticator.java,v 1.6.2.2 2001/08/14 18:02:49 rwaldhoff Exp $
+ * @version $Id: Authenticator.java,v 1.6.2.3 2001/08/20 17:13:17 rwaldhoff Exp $
*/
public class Authenticator {
@@ -84,7 +84,7 @@
*
* @param challenge the authentication challenge
* (e.g., the <tt>WWW-Authenticate</tt> header value)
- * @param state a {@link #State} object providing {@link Credentials}
+ * @param state a {@link State} object providing {@link Credentials}
*
* @return an <tt>Authorization</tt> value
*
@@ -103,11 +103,11 @@
String authScheme = challenge.substring(0, space);
if ("basic".equalsIgnoreCase(authScheme)) {
- // XXX FIX ME XXX
- // Note that this won't work if there is more than one
- // realm within the challenge
- // We could probably make it a bit more flexible in
- // parsing as well.
+ // FIXME: Note that this won't work if there
+ // is more than one realm within
+ // the challenge
+ // FIXME: We could probably make it a bit
+ // more flexible in parsing as well.
// parse the realm from the authentication challenge
if(challenge.length() < space + 1) {
@@ -132,7 +132,7 @@
* <i>realm</i> and <i>state</i>.
*
* @param realm the basic realm to authenticate to
- * @param state a {@link #State} object providing {@link Credentials}
+ * @param state a {@link State} object providing {@link Credentials}
*
* @return a basic <tt>Authorization</tt> value
*