|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AzDecision>
org.example.azapi.constants.AzDecision
public enum AzDecision
AzDecision enum values correspond to the values defined in XACML 2.0 Section 6.11: (http://docs.oasis-open.org/xacml/2.0/access_control-xacml-2.0-core-spec-os.pdf)
Enum Constant Summary | |
---|---|
AZ_DENY
“Deny": the requested access is denied. |
|
AZ_INDETERMINATE
"Indeterminate": the PDP is unable to evaluate the requested access. |
|
AZ_NOTAPPLICABLE
"NotApplicable": the PDP does not have any policy that applies to this decision request. |
|
AZ_PERMIT
"Permit": the requested access is permitted. |
Method Summary | |
---|---|
static AzDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AzDecision[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AzDecision AZ_PERMIT
public static final AzDecision AZ_DENY
public static final AzDecision AZ_INDETERMINATE
public static final AzDecision AZ_NOTAPPLICABLE
Method Detail |
---|
public static AzDecision[] values()
for (AzDecision c : AzDecision.values()) System.out.println(c);
public static AzDecision 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |