You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by el...@apache.org on 2011/12/10 19:19:01 UTC

svn commit: r1212835 - in /hadoop/common/branches/branch-1: CHANGES.txt src/core/org/apache/hadoop/security/authentication/server/AuthenticationToken.java

Author: eli
Date: Sat Dec 10 18:19:00 2011
New Revision: 1212835

URL: http://svn.apache.org/viewvc?rev=1212835&view=rev
Log:
HADOOP-7898. Fix javadoc warnings in AuthenticationToken.java. Contributed by Suresh Srinivas

Modified:
    hadoop/common/branches/branch-1/CHANGES.txt
    hadoop/common/branches/branch-1/src/core/org/apache/hadoop/security/authentication/server/AuthenticationToken.java

Modified: hadoop/common/branches/branch-1/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1/CHANGES.txt?rev=1212835&r1=1212834&r2=1212835&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/CHANGES.txt (original)
+++ hadoop/common/branches/branch-1/CHANGES.txt Sat Dec 10 18:19:00 2011
@@ -63,6 +63,9 @@ Release 1.1.0 - unreleased
     MAPREDUCE-3319. Hadoop example "multifilewc" broken in 0.20.205.0.
     (Subroto Sanyal via mattf)
 
+    HADOOP-7898. Fix javadoc warnings in AuthenticationToken.java.
+    (suresh via eli)
+
   IMPROVEMENTS
 
     MAPREDUCE-3008. [Gridmix] Improve cumulative CPU usage emulation for 

Modified: hadoop/common/branches/branch-1/src/core/org/apache/hadoop/security/authentication/server/AuthenticationToken.java
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-1/src/core/org/apache/hadoop/security/authentication/server/AuthenticationToken.java?rev=1212835&r1=1212834&r2=1212835&view=diff
==============================================================================
--- hadoop/common/branches/branch-1/src/core/org/apache/hadoop/security/authentication/server/AuthenticationToken.java (original)
+++ hadoop/common/branches/branch-1/src/core/org/apache/hadoop/security/authentication/server/AuthenticationToken.java Sat Dec 10 18:19:00 2011
@@ -23,12 +23,16 @@ import java.util.Map;
 import java.util.Set;
 import java.util.StringTokenizer;
 
+import javax.servlet.http.HttpServletRequest;
+
 /**
- * The {@link AuthenticationToken} contains information about an authenticated HTTP client and doubles
- * as the {@link Principal} to be returned by authenticated {@link HttpServletRequest}s
+ * The {@link AuthenticationToken} contains information about an authenticated
+ * HTTP client and doubles as the {@link Principal} to be returned by
+ * authenticated {@link HttpServletRequest}s
  * <p/>
- * The token can be serialized/deserialized to and from a string as it is sent and received in HTTP client
- * responses and requests as a HTTP cookie (this is done by the {@link AuthenticationFilter}).
+ * The token can be serialized/deserialized to and from a string as it is sent
+ * and received in HTTP client responses and requests as a HTTP cookie (this is
+ * done by the {@link AuthenticationFilter}).
  */
 public class AuthenticationToken implements Principal {