MAPREDUCE-3192. Fix Javadoc warning in JobClient.java and Cluster.java.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1183513 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jitendra Nath Pandey 2011-10-14 21:49:35 +00:00
parent a11f67fb78
commit 57f99c2b02
3 changed files with 7 additions and 4 deletions

View File

@ -50,6 +50,9 @@ Trunk (unreleased changes)
MAPREDUCE-2764. Fix renewal of dfs delegation tokens. (Owen via jitendra)
MAPREDUCE-3192. Fix Javadoc warning in JobClient.java and Cluster.java.
(jitendra)
Release 0.23.0 - Unreleased
INCOMPATIBLE CHANGES

View File

@ -1080,7 +1080,7 @@ public QueueAclsInfo[] getQueueAclsForCurrentUser() throws IOException {
* @return true if the renewal went well
* @throws InvalidToken
* @throws IOException
* @deprecated Use {@link Token.renew} instead
* @deprecated Use {@link Token#renew} instead
*/
public long renewDelegationToken(Token<DelegationTokenIdentifier> token
) throws InvalidToken, IOException,
@ -1092,7 +1092,7 @@ public long renewDelegationToken(Token<DelegationTokenIdentifier> token
* Cancel a delegation token from the JobTracker
* @param token the token to cancel
* @throws IOException
* @deprecated Use {@link Token.cancel} instead
* @deprecated Use {@link Token#cancel} instead
*/
public void cancelDelegationToken(Token<DelegationTokenIdentifier> token
) throws InvalidToken, IOException,

View File

@ -371,7 +371,7 @@ public long getTaskTrackerExpiryInterval() throws IOException,
* @return the new expiration time
* @throws InvalidToken
* @throws IOException
* @deprecated Use {@link Token.renew} instead
* @deprecated Use {@link Token#renew} instead
*/
public long renewDelegationToken(Token<DelegationTokenIdentifier> token
) throws InvalidToken, IOException,
@ -388,7 +388,7 @@ public long renewDelegationToken(Token<DelegationTokenIdentifier> token
* Cancel a delegation token from the JobTracker
* @param token the token to cancel
* @throws IOException
* @deprecated Use {@link Token.cancel} instead
* @deprecated Use {@link Token#cancel} instead
*/
public void cancelDelegationToken(Token<DelegationTokenIdentifier> token
) throws IOException,