object HttpMethod extends Serializable

Source
HttpMethod.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpMethod
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def custom(name: String): HttpMethod

    Creates a custom method by name and assumes properties conservatively to be safe = false, idempotent = false, requestEntityAcceptance = Expected and contentLengthAllowed always true.

  2. def custom(name: String, safe: Boolean, idempotent: Boolean, requestEntityAcceptance: RequestEntityAcceptance, contentLengthAllowed: Boolean): HttpMethod

    Create a custom method type.

Deprecated Value Members

  1. def custom(name: String, safe: Boolean, idempotent: Boolean, requestEntityAcceptance: RequestEntityAcceptance): HttpMethod

    Create a custom method type.

    Create a custom method type.

    Annotations
    @Deprecated
    Deprecated

    The created method will compute the presence of Content-Length headers based on deprecated logic (before issue #4213).