HADOOP-6943. The GroupMappingServiceProvider interface should be public. Contributed by Aaron T. Myers.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1031675 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9ea883e083
commit
cf65399043
|
@ -160,6 +160,9 @@ Trunk (unreleased changes)
|
|||
|
||||
HADOOP-6818. Provides a JNI implementation of group resolution. (ddas)
|
||||
|
||||
HADOOP-6943. The GroupMappingServiceProvider interface should be public.
|
||||
(Aaron T. Myers via tomwhite)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-6884. Add LOG.isDebugEnabled() guard for each LOG.debug(..).
|
||||
|
|
|
@ -27,9 +27,9 @@ import org.apache.hadoop.classification.InterfaceStability;
|
|||
* An interface for the implementation of a user-to-groups mapping service
|
||||
* used by {@link Groups}.
|
||||
*/
|
||||
@InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce"})
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Evolving
|
||||
interface GroupMappingServiceProvider {
|
||||
public interface GroupMappingServiceProvider {
|
||||
|
||||
/**
|
||||
* Get all various group memberships of a given user.
|
||||
|
|
Loading…
Reference in New Issue