public enum AccessControlHandling extends java.lang.Enum<AccessControlHandling>
AccessControlHandling defines the behavior when importing
access control nodes.| Enum Constant and Description |
|---|
CLEAR
Clears all access control on the target system.
|
IGNORE
Ignores the packaged access control and leaves the target unchanged.
|
MERGE
Tries to merge access control provided with the package with the one on
the target.
|
MERGE_PRESERVE
Tries to merge access control in the content with the one provided by the package.
|
OVERWRITE
Applies the access control provided with the package to the target.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessControlHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessControlHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessControlHandling IGNORE
public static final AccessControlHandling OVERWRITE
public static final AccessControlHandling MERGE
OVERWRITE
for existing ACLs. ACLs not in the package are retained.public static final AccessControlHandling MERGE_PRESERVE
IGNORE
for existing ACLs. ACLs not in the package are retained.public static final AccessControlHandling CLEAR
public static AccessControlHandling[] values()
for (AccessControlHandling c : AccessControlHandling.values()) System.out.println(c);
public static AccessControlHandling 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 null"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"