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:
parent
6fe92180fa
commit
76e22cc8bf
|
@ -196,6 +196,9 @@ Trunk (unreleased changes)
|
||||||
HADOOP-6715. Fixes AccessControlList.toString() to return a descriptive
|
HADOOP-6715. Fixes AccessControlList.toString() to return a descriptive
|
||||||
String representation of the ACL. (Ravi Gummadi via amareshwari)
|
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
|
Release 0.21.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -939,7 +939,7 @@ public class Client {
|
||||||
/** Make a call, passing <code>param</code>, to the IPC server running at
|
/** Make a call, passing <code>param</code>, to the IPC server running at
|
||||||
* <code>address</code>, returning the value. Throws exceptions if there are
|
* <code>address</code>, returning the value. Throws exceptions if there are
|
||||||
* network problems or if the remote code threw an exception.
|
* 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
|
@Deprecated
|
||||||
public Writable call(Writable param, InetSocketAddress address)
|
public Writable call(Writable param, InetSocketAddress address)
|
||||||
|
@ -952,7 +952,7 @@ public class Client {
|
||||||
* the value.
|
* the value.
|
||||||
* Throws exceptions if there are network problems or if the remote code
|
* Throws exceptions if there are network problems or if the remote code
|
||||||
* threw an exception.
|
* threw an exception.
|
||||||
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead
|
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public Writable call(Writable param, InetSocketAddress addr,
|
public Writable call(Writable param, InetSocketAddress addr,
|
||||||
|
|
|
@ -127,7 +127,7 @@ public class Groups {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the groups being used to map user-to-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.
|
* @return the groups being used to map user-to-groups.
|
||||||
*/
|
*/
|
||||||
public static Groups getUserToGroupsMappingService(Configuration conf) {
|
public static Groups getUserToGroupsMappingService(Configuration conf) {
|
||||||
|
|
|
@ -43,7 +43,6 @@ public interface RefreshUserMappingsProtocol extends VersionedProtocol {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Refresh user to group mappings.
|
* Refresh user to group mappings.
|
||||||
* @param conf
|
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public void refreshUserToGroupsMappings() throws IOException;
|
public void refreshUserToGroupsMappings() throws IOException;
|
||||||
|
|
Loading…
Reference in New Issue