object HttpMethod extends Serializable
- Source
- HttpMethod.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HttpMethod
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- 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.
- def custom(name: String, safe: Boolean, idempotent: Boolean, requestEntityAcceptance: RequestEntityAcceptance, contentLengthAllowed: Boolean): HttpMethod
Create a custom method type.
Deprecated Value Members
- 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).