Class QueueUserACLInfo

java.lang.Object
org.apache.hadoop.yarn.api.records.QueueUserACLInfo

@Public @Stable public abstract class QueueUserACLInfo extends Object

QueueUserACLInfo provides information QueueACL for the given user.

See Also:
  • Constructor Details

    • QueueUserACLInfo

      public QueueUserACLInfo()
  • Method Details

    • newInstance

      @Private @Unstable public static QueueUserACLInfo newInstance(String queueName, List<QueueACL> acls)
    • getQueueName

      @Public @Stable public abstract String getQueueName()
      Get the queue name of the queue.
      Returns:
      queue name of the queue
    • setQueueName

      @Private @Unstable public abstract void setQueueName(String queueName)
    • getUserAcls

      @Public @Stable public abstract List<QueueACL> getUserAcls()
      Get the list of QueueACL for the given user.
      Returns:
      list of QueueACL for the given user
    • setUserAcls

      @Private @Unstable public abstract void setUserAcls(List<QueueACL> acls)