jsdever     2002/10/28 22:23:25

  Modified:    httpclient/src/java/org/apache/commons/httpclient
                        Authenticator.java
  Log:
  Change any unrecognized @todo tags to TODO: comments.
  
  Revision  Changes    Path
  1.34      +9 -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.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- Authenticator.java        24 Oct 2002 08:27:08 -0000      1.33
  +++ Authenticator.java        29 Oct 2002 06:23:25 -0000      1.34
  @@ -169,7 +169,7 @@
        * @return The created digest as string. This will be the response tag's
        *         value in the Authentication HTTP header.
        * @throws HttpException when MD5 is an unsupported algorithm
  -     * @todo + Add createDigest() method 
  +     * TODO: + Add createDigest() method 
        */
       public static String createDigest(String uname, String pwd,
               Map mapCredentials) throws HttpException {
  @@ -234,7 +234,6 @@
        * @throws UnsupportedOperationException when the challenge type is not
        *         supported
        * @see HttpState#setCredentials(String,Credentials)
  -     * @see #authenticate(HttpMethod,HttpState,Header,String)
        */
       public static boolean authenticate(HttpMethod method, HttpState state)
           throws HttpException, UnsupportedOperationException {
  @@ -258,7 +257,6 @@
        * @throws UnsupportedOperationException when the given challenge type is
        *         not supported
        * @see HttpState#setProxyCredentials(String,Credentials)
  -     * @see #authenticate(HttpMethod,HttpState,Header,String)
        */
       public static boolean authenticateProxy(HttpMethod method, HttpState state)
           throws HttpException, UnsupportedOperationException {
  @@ -737,7 +735,7 @@
        * 
        * @return The cnonce value as String.
        * @throws HttpException if MD5 algorithm is not supported.
  -     * @todo + Add createCnonce() method
  +     * TODO: + Add createCnonce() method
        */
       private static String createCnonce() throws HttpException {
           log.trace("enter Authenticator.createCnonce()");
  @@ -771,7 +769,7 @@
        *        nonce, nc, cnonce, opaque, qop).
        * @param digest The response tag's value as String.
        * @return The digest-response as String.
  -     * @todo + Add createDigestHeader() method 
  +     * TODO: + Add createDigestHeader() method 
        */
       private static String createDigestHeader(String uname, Map mapCredentials,
               String digest) {
  @@ -815,7 +813,7 @@
        * 
        * @param binaryData array containing the digest
        * @return encoded MD5, or <CODE>null</CODE> if encoding failed
  -     * @todo + Add encode() method 
  +     * TODO: + Add encode() method 
        */
       private static String encode(byte[] binaryData) {
           log.trace("enter Authenticator.encode(byte[])");
  @@ -878,7 +876,7 @@
        * @param token the entry to be processed
        * @param tokens the <CODE>java.util.Map</CODE> into which the processed
        *        entry is placed (only if it has <CODE>"xxx=yyy"</CODE> format).
  -     * @todo + Add processDigestToken() method 
  +     * TODO: + Add processDigestToken() method 
        */
       private static void processDigestToken(String token, Map tokens) {
           log.trace("enter Authenticator.processDigestToken(String, Map)");
  
  
  

--
To unsubscribe, e-mail:   <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>

Reply via email to