public enum LogoutRequestStatus extends Enum<LogoutRequestStatus>
| Enum Constant and Description |
|---|
FAILURE
the logout request has failed.
|
NOT_ATTEMPTED
the logout request has not been performed.
|
SUCCESS
the logout request has successed.
|
| Modifier and Type | Method and Description |
|---|---|
static LogoutRequestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogoutRequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogoutRequestStatus NOT_ATTEMPTED
public static final LogoutRequestStatus FAILURE
public static final LogoutRequestStatus SUCCESS
public static LogoutRequestStatus[] values()
for (LogoutRequestStatus c : LogoutRequestStatus.values()) System.out.println(c);
public static LogoutRequestStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2004-2014 Jasig. All Rights Reserved.