public enum AccessResultReason extends java.lang.Enum<AccessResultReason>
Enum Constant and Description |
---|
RESOURCE_NOT_MATCHED
Resource match failed.
|
RULE_MATCHED
Resource match has succeded and policy rule has matched.
|
RULE_NOT_MATCHED
Resource match has succeded but policy rule did not match.
|
SESSION_CREDENTIAL_EXPIRED
Session credentials have expired based on the credential expirty time set for the application domain.
|
SESSION_IDLE
The session was idle long enough to meet the idle time time out limit set for the application domain.
|
UNEXPECTED_ERROR
An unexpected error was encountered.
|
Modifier and Type | Method and Description |
---|---|
static AccessResultReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessResultReason[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final AccessResultReason RULE_NOT_MATCHED
public static final AccessResultReason RULE_MATCHED
public static final AccessResultReason RESOURCE_NOT_MATCHED
public static final AccessResultReason SESSION_IDLE
public static final AccessResultReason SESSION_CREDENTIAL_EXPIRED
public static final AccessResultReason UNEXPECTED_ERROR
public static AccessResultReason[] values()
for (AccessResultReason c : AccessResultReason.values()) System.out.println(c);
public static AccessResultReason 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 namejava.lang.NullPointerException
- if the argument is null