HADOOP-7898. svn merge -c 1212021 from trunk

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1212837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2011-12-10 18:25:57 +00:00
parent f005c3223c
commit 8a38dfba87
2 changed files with 10 additions and 4 deletions

View File

@ -23,12 +23,16 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import javax.servlet.http.HttpServletRequest;
/** /**
* The {@link AuthenticationToken} contains information about an authenticated HTTP client and doubles * The {@link AuthenticationToken} contains information about an authenticated
* as the {@link Principal} to be returned by authenticated {@link HttpServletRequest}s * HTTP client and doubles as the {@link Principal} to be returned by
* authenticated {@link HttpServletRequest}s
* <p/> * <p/>
* The token can be serialized/deserialized to and from a string as it is sent and received in HTTP client * The token can be serialized/deserialized to and from a string as it is sent
* responses and requests as a HTTP cookie (this is done by the {@link AuthenticationFilter}). * and received in HTTP client responses and requests as a HTTP cookie (this is
* done by the {@link AuthenticationFilter}).
*/ */
public class AuthenticationToken implements Principal { public class AuthenticationToken implements Principal {

View File

@ -78,6 +78,8 @@ Release 0.23.1 - Unreleased
HADOOP-7902. skipping name rules setting (if already set) should be done HADOOP-7902. skipping name rules setting (if already set) should be done
on UGI initialization only. (tucu) on UGI initialization only. (tucu)
HADOOP-7898. Fix javadoc warnings in AuthenticationToken.java. (suresh)
Release 0.23.0 - 2011-11-01 Release 0.23.0 - 2011-11-01
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES