Enum AccessControlHandling
- All Implemented Interfaces:
Serializable,Comparable<AccessControlHandling>
AccessControlHandling defines the behavior when importing
access control nodes.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionClears all access control on the target system.Ignores the packaged access control and leaves the target unchanged.Merge access control provided with the package with the one in the content by replacing the access control entries of corresponding principals (i.e. package first).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. content first).Applies the access control provided with the package to the target. this also removes existing access control. -
Method Summary
Modifier and TypeMethodDescriptionstatic AccessControlHandlingReturns 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.
-
Enum Constant Details
-
IGNORE
Ignores the packaged access control and leaves the target unchanged. -
OVERWRITE
Applies the access control provided with the package to the target. this also removes existing access control. -
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. package first). It never alters access control entries of principals not present in the package.Example:
Content ACL:everyone, deny, jcr:all bob, allow, jcr:read bob, allow, jcr:writePackage ACL:bob, deny, jcr:all alice, allow, jcr:readResult ACL:everyone, deny, jcr:all bob, deny, jcr:all alice, allow, jcr:read -
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. content first). It never alters access control entries already existing in the content.Example:
Content ACL:everyone, deny, jcr:all bob, allow, jcr:read bob, allow, jcr:writePackage ACL:bob, deny, jcr:all alice, allow, jcr:readResult ACL:everyone, deny, jcr:all bob, allow, jcr:read bob, allow, jcr:write alice, allow, jcr:read -
CLEAR
Clears all access control on the target system.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-