@InterfaceAudience.Private public enum ACLType extends Enum<ACLType>
| Enum Constant and Description |
|---|
AM_MODIFY_ACL
Modify permissions on the Application Master
|
AM_VIEW_ACL
View permissions on the Application Master
|
DAG_MODIFY_ACL
Modify permissions on the DAG
|
DAG_VIEW_ACL
View permissions on the DAG
|
YARN_ADMIN_ACL
YARN admin (view/modify) permissions on the Application Master
|
| Modifier and Type | Method and Description |
|---|---|
static ACLType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACLType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACLType YARN_ADMIN_ACL
public static final ACLType AM_VIEW_ACL
public static final ACLType AM_MODIFY_ACL
public static final ACLType DAG_VIEW_ACL
public static final ACLType DAG_MODIFY_ACL
public static ACLType[] values()
for (ACLType c : ACLType.values()) System.out.println(c);
public static ACLType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 Apache Software Foundation. All rights reserved.