Enum Class DuplicateSessionHandlingMode

java.lang.Object
java.lang.Enum<DuplicateSessionHandlingMode>
com.saperion.ngc.authorization.DuplicateSessionHandlingMode
All Implemented Interfaces:
Serializable, Comparable<DuplicateSessionHandlingMode>, Constable

public enum DuplicateSessionHandlingMode extends Enum<DuplicateSessionHandlingMode>
Modes for handling duplicate sessions.
  • Enum Constant Details

    • USER_DIALOG

      public static final DuplicateSessionHandlingMode USER_DIALOG
      User will get a dialog box from where he can choose how to handle the sessions
    • AUTO_DELETE_DUPLICATE_SESSIONS

      public static final DuplicateSessionHandlingMode AUTO_DELETE_DUPLICATE_SESSIONS
      User wont get any dialog box. All duplicate sessions get automatically deleted
    • KEEP_DUPLICATE_SESSIONS

      public static final DuplicateSessionHandlingMode KEEP_DUPLICATE_SESSIONS
      User wont get any dialog box. Duplicate sessions wont get deleted
  • Method Details

    • values

      public static DuplicateSessionHandlingMode[] 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

      public static DuplicateSessionHandlingMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null