Enum Class PartialEvaluationPolicyProvider.Outcome
java.lang.Object
java.lang.Enum<PartialEvaluationPolicyProvider.Outcome>
org.keycloak.authorization.fgap.evaluation.partial.PartialEvaluationPolicyProvider.Outcome
- All Implemented Interfaces:
Serializable,Comparable<PartialEvaluationPolicyProvider.Outcome>,Constable
- Enclosing interface:
- PartialEvaluationPolicyProvider
public static enum PartialEvaluationPolicyProvider.Outcome
extends Enum<PartialEvaluationPolicyProvider.Outcome>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe evaluation resulted in a DENYThe policy could not be evaluated because and should be unconditionally denied without applying logic inversion.The evaluation resulted in a GRANTThe evaluation should be skipped and the next policy should be evaluated. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GRANT
The evaluation resulted in a GRANT -
DENY
The evaluation resulted in a DENY -
SKIP
The evaluation should be skipped and the next policy should be evaluated. It is up to the caller to interpret aSKIPas aSKIP, aGRANT, aDENY, or just ignore the policy evaluation. -
FORCE_DENY
The policy could not be evaluated because and should be unconditionally denied without applying logic inversion.
-
-
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
-