public enum LogoutScope extends java.lang.Enum<LogoutScope>
NamedCache.| Enum Constant and Description |
|---|
Local
The user should be logged out from the cache in only the currently running client application.
|
StoreWide
The user should be logged out from the cache in every client application accessing the StateServer store.
|
| Modifier and Type | Method and Description |
|---|---|
static LogoutScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogoutScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogoutScope Local
public static final LogoutScope StoreWide
public static LogoutScope[] values()
for (LogoutScope c : LogoutScope.values()) System.out.println(c);
public static LogoutScope 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