org.apache.hadoop.yarn.api.records
Interface QueueUserACLInfo

All Known Implementing Classes:
QueueUserACLInfoPBImpl

@InterfaceAudience.Public
@InterfaceStability.Stable
public interface QueueUserACLInfo

QueueUserACLInfo provides information QueueACL for the given user.

See Also:
QueueACL, ClientRMProtocol.getQueueUserAcls(org.apache.hadoop.yarn.api.protocolrecords.GetQueueUserAclsInfoRequest)

Method Summary
 String getQueueName()
          Get the queue name of the queue.
 List<QueueACL> getUserAcls()
          Get the list of QueueACL for the given user.
 void setQueueName(String queueName)
           
 void setUserAcls(List<QueueACL> acls)
           
 

Method Detail

getQueueName

@InterfaceAudience.Public
@InterfaceStability.Stable
String getQueueName()
Get the queue name of the queue.

Returns:
queue name of the queue

setQueueName

@InterfaceAudience.Private
@InterfaceStability.Unstable
void setQueueName(String queueName)

getUserAcls

@InterfaceAudience.Public
@InterfaceStability.Stable
List<QueueACL> getUserAcls()
Get the list of QueueACL for the given user.

Returns:
list of QueueACL for the given user

setUserAcls

@InterfaceAudience.Private
@InterfaceStability.Unstable
void setUserAcls(List<QueueACL> acls)


Copyright © 2012 Apache Software Foundation. All Rights Reserved.