Enum Class SingleLogoutProperties.LogoutPropagationTypes

java.lang.Object
java.lang.Enum<SingleLogoutProperties.LogoutPropagationTypes>
org.apereo.cas.configuration.model.core.slo.SingleLogoutProperties.LogoutPropagationTypes
All Implemented Interfaces:
Serializable, Comparable<SingleLogoutProperties.LogoutPropagationTypes>, Constable
Enclosing class:
SingleLogoutProperties

public static enum SingleLogoutProperties.LogoutPropagationTypes extends Enum<SingleLogoutProperties.LogoutPropagationTypes>
The Logout propagation types.
  • Enum Constant Details

    • AJAX

      This is the default propagation mechanism where logout requests are sent to applications using a AJAX call via jsonp.
    • IFRAME

      The propagation mechanism will submit the logout request to the logout URL that is loaded inside an iframe. This is typically useful if the application receiving the logout request needs to generate HTML to process the logout request notification, specially if the application is a SPA.
  • 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 name
      NullPointerException - if the argument is null