| Enum Constant and Description |
|---|
CONTAINER_INHERIT_ACE
0x02 - Child objects that are containers, such as directories, inherit the ACE as an effective ACE.
|
FAILED_ACCESS_ACE_FLAG
0x80 - Used with system-audit ACEs in a system access control list (SACL) to generate audit messages for failed
access attempts.
|
INHERIT_ONLY_ACE
0x08 - Indicates an inherit-only ACE, which does not control access to the object to which it is attached.
|
INHERITED_ACE
0x10 - Indicates that the ACE was inherited.
|
NO_PROPAGATE_INHERIT_ACE
0x04 - If the ACE is inherited by a child object, the system clears the OBJECT_INHERIT_ACE and
CONTAINER_INHERIT_ACE flags in the inherited ACE.
|
OBJECT_INHERIT_ACE
0x01 - Noncontainer child objects inherit the ACE as an effective ACE.
|
SUCCESSFUL_ACCESS_ACE_FLAG
0x40 - Used with system-audit ACEs in a SACL to generate audit messages for successful access attempts.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
Gets byte value.
|
static java.util.List<AceFlag> |
parseValue(byte value)
Parse byte value.
|
java.lang.String |
toString() |
static AceFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AceFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AceFlag CONTAINER_INHERIT_ACE
public static final AceFlag FAILED_ACCESS_ACE_FLAG
public static final AceFlag INHERIT_ONLY_ACE
public static final AceFlag INHERITED_ACE
public static final AceFlag NO_PROPAGATE_INHERIT_ACE
public static final AceFlag OBJECT_INHERIT_ACE
public static final AceFlag SUCCESSFUL_ACCESS_ACE_FLAG
public static AceFlag[] values()
for (AceFlag c : AceFlag.values()) System.out.println(c);
public static AceFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte getValue()
public java.lang.String toString()
toString in class java.lang.Enum<AceFlag>public static java.util.List<AceFlag> parseValue(byte value)
value - byte value.Copyright © 2015-2018 Tirasa. All Rights Reserved.