Enum Class RestfulSmsProperties.RestfulSmsRequestStyles

java.lang.Object
java.lang.Enum<RestfulSmsProperties.RestfulSmsRequestStyles>
org.apereo.cas.configuration.model.support.sms.RestfulSmsProperties.RestfulSmsRequestStyles
All Implemented Interfaces:
Serializable, Comparable<RestfulSmsProperties.RestfulSmsRequestStyles>, Constable
Enclosing class:
RestfulSmsProperties

public static enum RestfulSmsProperties.RestfulSmsRequestStyles extends Enum<RestfulSmsProperties.RestfulSmsRequestStyles>
  • Enum Constant Details

    • QUERY_PARAMETERS

      public static final RestfulSmsProperties.RestfulSmsRequestStyles QUERY_PARAMETERS
      This option will submit an SMS http request where the from, to, etc are passed as request query parameters. Only the message itself is included in the request body.
    • REQUEST_BODY

      public static final RestfulSmsProperties.RestfulSmsRequestStyles REQUEST_BODY
      This option will pass all parameters in the body of the SMS http request as a JSON object.
  • 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