public enum DuplicateSessionHandlingMode extends Enum<DuplicateSessionHandlingMode>
Enum Constant and Description |
---|
AUTO_DELETE_DUPLICATE_SESSIONS
User wont get any dialog box.
|
KEEP_DUPLICATE_SESSIONS
User wont get any dialog box.
|
USER_DIALOG
User will get a dialog box from where he can choose how to handle the sessions
|
Modifier and Type | Method and Description |
---|---|
static DuplicateSessionHandlingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DuplicateSessionHandlingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DuplicateSessionHandlingMode USER_DIALOG
public static final DuplicateSessionHandlingMode AUTO_DELETE_DUPLICATE_SESSIONS
public static final DuplicateSessionHandlingMode KEEP_DUPLICATE_SESSIONS
public static DuplicateSessionHandlingMode[] values()
for (DuplicateSessionHandlingMode c : DuplicateSessionHandlingMode.values()) System.out.println(c);
public static DuplicateSessionHandlingMode 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 © 2021 Hyland Software Germany GmbH. All rights reserved.