public enum ACHandling extends Enum<ACHandling> implements Serializable
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
Merge access control provided with the package with the one in the content by replacing the access control
entries of corresponding principals (i.e.
|
MERGE_PRESERVE
Merge access control in the content with the one provided with the package by adding the access control entries
of principals not present in the content (i.e.
|
OVERWRITE
Applies the access control provided with the package to the target.
|
Modifier and Type | Method and Description |
---|---|
String |
getLabel()
Get the Package Manager display label for the ACHandling mode.
|
String |
getPropertyValue()
Get the associated
acHandling property value. |
static ACHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACHandling IGNORE
public static final ACHandling OVERWRITE
public static final ACHandling MERGE
public static final ACHandling MERGE_PRESERVE
public static final ACHandling CLEAR
public static ACHandling[] values()
for (ACHandling c : ACHandling.values()) System.out.println(c);
public static ACHandling 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 nullpublic String getLabel()
public String getPropertyValue()
acHandling
property value.acHandling
property value.Copyright © 2013-2017. All Rights Reserved.