Enum Class HttpSender.PostType

java.lang.Object
java.lang.Enum<HttpSender.PostType>
org.frankframework.http.HttpSender.PostType
All Implemented Interfaces:
Serializable, Comparable<HttpSender.PostType>, Constable
Enclosing class:
HttpSender

public static enum HttpSender.PostType extends Enum<HttpSender.PostType>
  • Enum Constant Details

    • RAW

      public static final HttpSender.PostType RAW
      The input message is sent unchanged as character data, like text, XML or JSON, with possibly parameter data appended
    • BINARY

      public static final HttpSender.PostType BINARY
      The input message is sent unchanged as binary data
    • URLENCODED

      public static final HttpSender.PostType URLENCODED
      Yields a x-www-form-urlencoded form entity
    • FORMDATA

      public static final HttpSender.PostType FORMDATA
      Yields a multipart/form-data form entity
    • MTOM

      public static final HttpSender.PostType MTOM
      Yields a MTOM multipart/related form entity
  • Method Details

    • values

      public static HttpSender.PostType[] 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 HttpSender.PostType 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