package model
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- model
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class Cookie[T](name: String, content: String, target: Type[T]) extends Product with Serializable
Cookie is an immutable and type-safe representation of an HTTP cookie.
Cookie is an immutable and type-safe representation of an HTTP cookie. It can be of type types viz.
Cookie[Request]
andCookie[Response]
.Cookie[Request]
is only available in theRequest
object andCookie[Response]
is only available in theResponse
object. - type Header = model.Headers.Header
- sealed trait Headers extends HeaderExtension[Headers] with HeaderIterable
Represents an immutable collection of headers.
Represents an immutable collection of headers. It extends HeaderExtensions and has a ton of powerful operators that can be used to add, remove and modify headers.
NOTE: Generic operators that are not specific to
Headers
should not be defined here. A better place would be one of the traits extended byHeaderExtension
. - sealed abstract class HttpError extends Throwable
- final case class MediaType(mainType: String, subType: String, compressible: Boolean = false, binary: Boolean = false, fileExtensions: List[String] = Nil, extensions: Map[String, String] = Map.empty, parameters: Map[String, String] = Map.empty) extends Product with Serializable
- sealed trait Method extends AnyRef
- sealed trait Scheme extends AnyRef
- sealed trait Status extends Product with Serializable
- sealed trait Version extends AnyRef
Value Members
- val HTTP_CHARSET: Charset
Default HTTP Charset
- val Header: model.Headers.Header.type
- object Cookie extends Serializable
- object HeaderNames extends HeaderNames with NettyHeaderNames
- object HeaderValues extends HeaderValues with NettyHeaderValues
- object Headers extends HeaderConstructors
- object HttpError extends Serializable
- object MediaType extends MimeDB with Serializable
- object Method
- object Scheme
- object Status extends Serializable
- object Version