HADOOP-6885. Fix java doc warnings in Groups and RefreshUserMappingsProtocol. Contributed by Eli Collins.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@986961 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jakob Homan 2010-08-18 21:50:11 +00:00
parent 6fe92180fa
commit 76e22cc8bf
4 changed files with 6 additions and 4 deletions

View File

@ -196,6 +196,9 @@ Trunk (unreleased changes)
HADOOP-6715. Fixes AccessControlList.toString() to return a descriptive
String representation of the ACL. (Ravi Gummadi via amareshwari)
HADOOP-6885. Fix java doc warnings in Groups and RefreshUserMappingsProtocol.
(Eli Collins via jghoman)
Release 0.21.0 - Unreleased
INCOMPATIBLE CHANGES

View File

@ -939,7 +939,7 @@ public class Client {
/** Make a call, passing <code>param</code>, to the IPC server running at
* <code>address</code>, returning the value. Throws exceptions if there are
* network problems or if the remote code threw an exception.
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead
*/
@Deprecated
public Writable call(Writable param, InetSocketAddress address)
@ -952,7 +952,7 @@ public class Client {
* the value.
* Throws exceptions if there are network problems or if the remote code
* threw an exception.
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead
*/
@Deprecated
public Writable call(Writable param, InetSocketAddress addr,

View File

@ -127,7 +127,7 @@ public class Groups {
/**
* Get the groups being used to map user-to-groups.
* @param Configuration
* @param conf
* @return the groups being used to map user-to-groups.
*/
public static Groups getUserToGroupsMappingService(Configuration conf) {

View File

@ -43,7 +43,6 @@ public interface RefreshUserMappingsProtocol extends VersionedProtocol {
/**
* Refresh user to group mappings.
* @param conf
* @throws IOException
*/
public void refreshUserToGroupsMappings() throws IOException;