HADOOP-11254. Changed visibility of AccessControlList to be public for consumption by ecosystem. Contributed by Zhijie Shen.

This commit is contained in:
Vinod Kumar Vavilapalli 2014-11-01 11:10:03 -07:00
parent ed63b11646
commit b18e8a272e
2 changed files with 6 additions and 3 deletions

View File

@ -616,6 +616,9 @@ Release 2.6.0 - UNRELEASED
HADOOP-11216. Improve Openssl library finding. (cmccabe via yliu)
HADOOP-11254. Changed visibility of AccessControlList to be public for
consumption by ecosystem. (Zhijie Shen via vinodkv)
OPTIMIZATIONS
HADOOP-10838. Byte array native checksumming. (James Thomas via todd)

View File

@ -39,7 +39,7 @@
/**
* Class representing a configured access control list.
*/
@InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce"})
@InterfaceAudience.Public
@InterfaceStability.Evolving
public class AccessControlList implements Writable {
@ -209,7 +209,7 @@ public void removeGroup(String group) {
* Get the names of users allowed for this service.
* @return the set of user names. the set must not be modified.
*/
Collection<String> getUsers() {
public Collection<String> getUsers() {
return users;
}
@ -217,7 +217,7 @@ Collection<String> getUsers() {
* Get the names of user groups allowed for this service.
* @return the set of group names. the set must not be modified.
*/
Collection<String> getGroups() {
public Collection<String> getGroups() {
return groups;
}