public enum LogoutType extends Enum<LogoutType>
| Enum Constant and Description |
|---|
BACK_CHANNEL
For back channel SLO.
|
FRONT_CHANNEL
For front channel SLO.
|
| Modifier and Type | Method and Description |
|---|---|
static LogoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogoutType BACK_CHANNEL
public static final LogoutType FRONT_CHANNEL
public static LogoutType[] values()
for (LogoutType c : LogoutType.values()) System.out.println(c);
public static LogoutType 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-2015 Apereo. All Rights Reserved.