Package com.saperion.ngc.authorization
Enum Class DuplicateSessionHandlingMode
java.lang.Object
java.lang.Enum<DuplicateSessionHandlingMode>
com.saperion.ngc.authorization.DuplicateSessionHandlingMode
- All Implemented Interfaces:
Serializable
,Comparable<DuplicateSessionHandlingMode>
,Constable
Modes for handling duplicate sessions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUser wont get any dialog box.User wont get any dialog box.User will get a dialog box from where he can choose how to handle the sessions -
Method Summary
Modifier and TypeMethodDescriptionstatic DuplicateSessionHandlingMode
Returns the enum constant of this class with the specified name.static DuplicateSessionHandlingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
USER_DIALOG
User will get a dialog box from where he can choose how to handle the sessions -
AUTO_DELETE_DUPLICATE_SESSIONS
User wont get any dialog box. All duplicate sessions get automatically deleted -
KEEP_DUPLICATE_SESSIONS
User wont get any dialog box. Duplicate sessions wont get deleted
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-