Enum Class SamlIdPCoreProperties.SessionStorageTypes

java.lang.Object
java.lang.Enum<SamlIdPCoreProperties.SessionStorageTypes>
org.apereo.cas.configuration.model.support.saml.idp.SamlIdPCoreProperties.SessionStorageTypes
All Implemented Interfaces:
Serializable, Comparable<SamlIdPCoreProperties.SessionStorageTypes>, Constable
Enclosing class:
SamlIdPCoreProperties

public static enum SamlIdPCoreProperties.SessionStorageTypes extends Enum<SamlIdPCoreProperties.SessionStorageTypes>
Define session storage types.
  • Enum Constant Details

    • HTTP

      Saml requests, and other session data collected as part of SAML flows and requests are kept in the http servlet session that is local to the server.
    • BROWSER_SESSION_STORAGE

      public static final SamlIdPCoreProperties.SessionStorageTypes BROWSER_SESSION_STORAGE
      Saml requests, and other session data collected as part of SAML flows and requests are kept in the client browser's session storage, signed and encrypted. SAML2 interactions require client-side read/write operations to restore the session from the browser.
    • TICKET_REGISTRY

      public static final SamlIdPCoreProperties.SessionStorageTypes TICKET_REGISTRY
      Saml requests, and other session data collected as part of SAML flows and requests are tracked as CAS tickets in the registry and replicated across the entire cluster as tickets.
  • 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

      public static SamlIdPCoreProperties.SessionStorageTypes 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