Enum Class EnumEvalReason
- All Implemented Interfaces:
Serializable
,Comparable<EnumEvalReason>
,java.lang.constant.Constable
This class provides an enumeration of the reasons why an ACI evaluation returned a result from the AciHandler's
testApplicableLists call. This class is used by a geteffectiverights aclRightsInfo attribute search to build a
summary string.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAn allow evaluated to true.An deny ACI either evaluated to FAIL or to TRUE.There are aren't any allow ACIs.None of the allow and deny ACIs evaluated to true.No specific reason could be determined.The authorization DN has bypass-acl privileges. -
Method Summary
Modifier and TypeMethodDescriptionstatic EnumEvalReason
Returns the enum constant of this class with the specified name.static EnumEvalReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_ALLOW_ACIS
There are aren't any allow ACIs. -
EVALUATED_DENY_ACI
An deny ACI either evaluated to FAIL or to TRUE. -
EVALUATED_ALLOW_ACI
An allow evaluated to true. -
NO_MATCHED_ALLOWS_ACIS
None of the allow and deny ACIs evaluated to true. -
NO_REASON
No specific reason could be determined. -
SKIP_ACI
The authorization DN has bypass-acl privileges.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-