Packages

p

org

http4s

package http4s

Source
package.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. http4s
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class AttributeEntry[T](key: AttributeKey[T], value: T) extends Product with Serializable

    A map entry where key is constrained to only be associated with a fixed value of type T.

  2. final class AttributeKey[T] extends AnyRef

    A key in an AttributeMap that constrains its associated value to be of type T.

    A key in an AttributeMap that constrains its associated value to be of type T. The key is uniquely defined by its reference: there are no duplicate keys, even those with the same name and type.

  3. final class AttributeMap extends AnyRef

    An immutable map where an AttributeKey for a fixed type T can only be associated with values of type T.

    An immutable map where an AttributeKey for a fixed type T can only be associated with values of type T. Because the equality of keys is based on reference, it is therefore possible for this map to contain mappings for keys with the same label and same types.

  4. type AuthScheme = CaseInsensitiveString
  5. case class AuthedRequest[A](authInfo: A, req: Request) extends Product with Serializable
  6. type AuthedService[T] = Kleisli[Task, AuthedRequest[T], MaybeResponse]
  7. final case class BasicCredentials(username: String, password: String) extends Product with Serializable
  8. sealed trait CacheDirective extends Product with Renderable
  9. type Callback[A] = (\/[Throwable, A]) ⇒ Unit
  10. final case class Challenge(scheme: String, realm: String, params: Map[String, String] = Map.empty) extends Renderable with Product with Serializable
  11. final case class Charset extends Renderable with Product with Serializable
  12. sealed abstract class CharsetRange extends HasQValue with Renderable
  13. trait CharsetRangeInstances extends AnyRef
  14. final case class ContentCoding(coding: CaseInsensitiveString, qValue: QValue = QValue.One) extends HasQValue with Renderable with Product with Serializable
  15. final case class Cookie(name: String, content: String, expires: Option[HttpDate] = None, maxAge: Option[Long] = None, domain: Option[String] = None, path: Option[String] = None, secure: Boolean = false, httpOnly: Boolean = false, extension: Option[String] = None) extends Renderable with Product with Serializable
  16. sealed abstract class Credentials extends Renderable
  17. sealed abstract class DecodeFailure extends MessageFailure

    Indicates a problem decoding a Message.

    Indicates a problem decoding a Message. This may either be a problem with the entity headers or with the entity itself.

  18. type DecodeResult[T] = EitherT[Task, DecodeFailure, T]
  19. type EntityBody = Process[Task, ByteVector]
  20. trait EntityDecoder[T] extends AnyRef

    A type that can be used to decode a Message EntityDecoder is used to attempt to decode a Message returning the entire resulting A.

    A type that can be used to decode a Message EntityDecoder is used to attempt to decode a Message returning the entire resulting A. If an error occurs it will result in a failed Task The default decoders provided here are not streaming, but one could implement a streaming decoder by having the value of A be some kind of streaming construct.

    T

    result type produced by the decoder

    Annotations
    @implicitNotFound( ... )
  21. trait EntityDecoderInstances extends AnyRef

    Implementations of the EntityDecoder instances

  22. trait EntityEncoder[A] extends AnyRef
    Annotations
    @implicitNotFound( ... )
  23. trait EntityEncoderInstances extends EntityEncoderInstances0
  24. trait EntityEncoderInstances0 extends AnyRef
  25. type EventStream = Process[Task, ServerSentEvent]

    A stream of server-sent events

  26. final case class GenericDecodeFailure(message: String, response: (HttpVersion) ⇒ Task[Response]) extends DecodeFailure with Product with Serializable

    Generic description of a failure to decode a Message

  27. final case class GenericMessageBodyFailure(message: String, cause: Option[Throwable], response: (HttpVersion) ⇒ Task[Response]) extends MessageBodyFailure with Product with Serializable

    Generic description of a failure to handle a Message body

  28. final case class GenericParsingFailure(sanitized: String, details: String, response: (HttpVersion) ⇒ Task[Response]) extends ParsingFailure with Product with Serializable

    Generic description of a failure to parse an HTTP Message

  29. trait HasQValue extends AnyRef
  30. sealed trait Header extends Renderable with Product

    Abstract representation o the HTTP header

    Abstract representation o the HTTP header

    See also

    org.http4s.HeaderKey

  31. sealed trait HeaderKey extends AnyRef
  32. final class Headers extends Iterable[Header] with IterableLike[Header, Headers]

    A collection of HTTP Headers

  33. trait Http4s extends Http4sInstances with Http4sFunctions with AllSyntax
  34. trait Http4sFunctions extends QValueFunctions with UriFunctions
  35. trait Http4sInstances extends EntityDecoderInstances with HttpVersionInstances with EntityEncoderInstances with CharsetRangeInstances with QValueInstances with MethodInstances with StatusInstances
  36. final case class Http4sVersion(major: Int, minor: Int) extends Product with Serializable
  37. class HttpDate extends Renderable with Ordered[HttpDate]

    An HTTP-date value represents time as an instance of Coordinated Universal Time (UTC).

    An HTTP-date value represents time as an instance of Coordinated Universal Time (UTC). It expresses time at a resolution of one second. By using it over java.time.Instant in the model, we assure that if two headers render equally, their values are equal.

    See also

    https://tools.ietf.org/html/rfc7231#page65

  38. type HttpService = Kleisli[Task, Request, MaybeResponse]

    A Service that produces a Task to compute a Response from a Request.

    A Service that produces a Task to compute a Response from a Request. An HttpService can be run on any supported http4s server backend, such as Blaze, Jetty, or Tomcat.

  39. final case class HttpVersion extends Renderable with Ordered[HttpVersion] with Product with Serializable

    An HTTP version, as seen on the start line of an HTTP request or response.

    An HTTP version, as seen on the start line of an HTTP request or response.

    See also

    [http://tools.ietf.org/html/rfc7230#section-2.6 RFC 7320, Section 2.6

  40. trait HttpVersionInstances extends AnyRef
  41. final case class InvalidBodyException(msg: String) extends Exception with NoStackTrace with Product with Serializable

    Exception dealing with invalid body

    Exception dealing with invalid body

    msg

    description if what makes the body invalid

  42. sealed case class InvalidMessageBodyFailure(details: String, cause: Option[Throwable] = None) extends MessageBodyFailure with Product with Serializable

    Indicates a semantic error decoding the body of an HTTP Message.

  43. final case class InvalidResponseException(msg: String) extends Exception with NoStackTrace with Product with Serializable

    Exception dealing with invalid response

    Exception dealing with invalid response

    msg

    description if what makes the response invalid

  44. final case class LanguageTag(primaryTag: String, q: QValue = QValue.One, subTags: Seq[String] = Nil) extends Renderable with Product with Serializable
  45. sealed case class MalformedMessageBodyFailure(details: String, cause: Option[Throwable] = None) extends MessageBodyFailure with Product with Serializable

    Indicates an syntactic error decoding the body of an HTTP Message.

  46. sealed trait MaybeResponse extends AnyRef

    Represents that a service either returns a Response or a Pass to fall through to another service.

  47. sealed class MediaRange extends Renderable
  48. sealed class MediaType extends MediaRange
  49. final case class MediaTypeMismatch(messageType: MediaType, expected: Set[MediaRange]) extends UnsupportedMediaTypeFailure with Product with Serializable

    Indicates that no EntityDecoder matches the MediaType of the Message being decoded

  50. final case class MediaTypeMissing(expected: Set[MediaRange]) extends UnsupportedMediaTypeFailure with Product with Serializable

    Indicates that a Message attempting to be decoded has no MediaType and no EntityDecoder was lenient enough to accept it.

  51. sealed trait Message extends MessageOps

    Represents a HTTP Message.

    Represents a HTTP Message. The interesting subclasses are Request and Response while most of the functionality is found in MessageSyntax and ResponseOps

    See also

    MessageSyntax, ResponseOps

  52. sealed abstract class MessageBodyFailure extends DecodeFailure

    Indicates a problem decoding a Message body.

  53. sealed abstract class MessageFailure extends RuntimeException

    Indicates a failure to handle an HTTP Message.

  54. trait MessageOps extends Any
  55. trait MessageSyntax extends AnyRef
  56. sealed abstract case class Method extends Renderable with Semantics with Product with Serializable

    An HTTP method.

    An HTTP method.

    See also

    [http://www.iana.org/assignments/http-methods/http-methods.xhtml IANA HTTP Method Registry]

    [http://tools.ietf.org/html/rfc7231#section-4 RFC7321, Section 4]

  57. trait MethodInstances extends AnyRef
  58. final case class ParseFailure(sanitized: String, details: String) extends ParsingFailure with Product with Serializable

    Indicates an error parsing an HTTP Message.

    Indicates an error parsing an HTTP Message.

    sanitized

    May safely be displayed to a client to describe an error condition. Should not echo any part of a Request.

    details

    Contains any relevant details omitted from the sanitized version of the error. This may freely echo a Request.

  59. type ParseResult[+A] = \/[ParseFailure, A]
  60. sealed abstract class ParsingFailure extends MessageFailure with NoStackTrace

    Indicates an error parsing an HTTP Message.

  61. final class QValue extends AnyVal with Ordered[QValue] with Renderable

    A Quality Value.

    A Quality Value. Represented as thousandths for an exact representation rounded to three decimal places.

    See also

    RFC 2616, Section 3.9

  62. trait QValueFunctions extends AnyRef
  63. trait QValueInstances extends AnyRef
  64. final class Query extends IndexedSeq[KeyValue] with IndexedSeqOptimized[KeyValue, Query] with QueryOps with Renderable

    Collection representation of a query string

    Collection representation of a query string

    It is a indexed sequence of key and maybe a value pairs which maps precisely to a query string, modulo the identity of separators.

    When rendered, the resulting String will have the pairs separated by '&' while the key is separated from the value with '='

  65. trait QueryOps extends AnyRef
  66. trait QueryParam[T] extends AnyRef

    type class defining the key of a query parameter Usually used in conjunction with QueryParamEncoder and QueryParamDecoder

  67. trait QueryParamDecoder[T] extends AnyRef

    Type class defining how to decode a QueryParameterValue into a T

    Type class defining how to decode a QueryParameterValue into a T

    See also

    QueryParamCodecLaws

  68. trait QueryParamEncoder[T] extends AnyRef

    Type class defining how to encode a T as a QueryParameterValues

    Type class defining how to encode a T as a QueryParameterValues

    See also

    QueryParamCodecLaws

  69. trait QueryParamKeyLike[T] extends AnyRef
  70. final case class QueryParameterKey(value: String) extends AnyVal with Product with Serializable
  71. final case class QueryParameterValue(value: String) extends AnyVal with Product with Serializable
  72. final case class RangeUnit(value: String) extends Renderable with Product with Serializable
  73. sealed abstract case class Request extends Message with RequestOps with Product with Serializable

    Representation of an incoming HTTP message

    Representation of an incoming HTTP message

    A Request encapsulates the entirety of the incoming HTTP request including the status line, headers, and a possible request body.

  74. class RequestCookieJar extends Iterable[Cookie] with IterableLike[Cookie, RequestCookieJar]
  75. trait RequestOps extends MessageOps
  76. final case class Response(status: Status = Status.Ok, httpVersion: HttpVersion = HttpVersion.`HTTP/1.1`, headers: Headers = Headers.empty, body: EntityBody = EmptyBody, attributes: AttributeMap = AttributeMap.empty) extends Message with MaybeResponse with ResponseOps with Product with Serializable

    Representation of the HTTP response to send back to the client

    Representation of the HTTP response to send back to the client

    status

    Status code and message

    headers

    Headers containing all response headers

    body

    scalaz.stream.Process[Task,Chunk] representing the possible body of the response

    attributes

    AttributeMap containing additional parameters which may be used by the http4s backend for additional processing such as java.io.File object

  77. trait ResponseOps extends MessageOps
  78. case class ServerSentEvent(data: String, eventType: Option[String] = None, id: Option[EventId] = None, retry: Option[Long] = None) extends Renderable with Product with Serializable
  79. type Service[A, B] = Kleisli[Task, A, B]

    A Service wraps a function of request type A to a Task that runs to response type B.

    A Service wraps a function of request type A to a Task that runs to response type B. By wrapping the Service, we can compose them using Kleisli operations.

  80. final case class Status extends Ordered[Status] with Renderable with Product with Serializable

    Representation of the HTTP response code and reason

    Representation of the HTTP response code and reason

    Note: the reason is not important to the protocol and is not considered in equality checks.

    See also

    [http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml IANA Status Code Registry]

    [http://tools.ietf.org/html/rfc7231#section-6 RFC7231, Section 6]

  81. trait StatusInstances extends AnyRef
  82. final case class TransferCoding extends Renderable with Product with Serializable
  83. sealed abstract class UnsupportedMediaTypeFailure extends DecodeFailure with NoStackTrace

    Indicates that a Message came with no supported MediaType.

  84. final case class Uri(scheme: Option[CaseInsensitiveString] = None, authority: Option[Authority] = None, path: Path = "", query: Query = Query.empty, fragment: Option[Fragment] = None) extends QueryOps with Renderable with Product with Serializable

    Representation of the Request URI

    Representation of the Request URI

    scheme

    optional Uri Scheme. eg, http, https

    authority

    optional Uri Authority. eg, localhost:8080, www.foo.bar

    path

    url-encoded string representation of the path component of the Uri.

    query

    optional Query. url-encoded.

    fragment

    optional Uri Fragment. url-encoded.

  85. trait UriFunctions extends AnyRef
  86. final case class UriTemplate(scheme: Option[Scheme] = None, authority: Option[Authority] = None, path: Path = Nil, query: UriTemplate.Query = Nil, fragment: Fragment = Nil) extends Product with Serializable

    Simple representation of a URI Template that can be rendered as RFC6570 conform string.

    Simple representation of a URI Template that can be rendered as RFC6570 conform string.

    This model reflects only a subset of RFC6570.

    Level 1 and Level 2 are completely modeled and Level 3 features are limited to:

    • Path segments, slash-prefixed
    • Form-style query, ampersand-separated
    • Fragment expansion
  87. final class UrlForm extends AnyVal
  88. type Http4sSyntax = AllSyntax
    Annotations
    @deprecated
    Deprecated

    (Since version 0.16) Moved to org.http4s.syntax.AllSyntax

Value Members

  1. val ApiVersion: Http4sVersion
  2. val DefaultCharset: Charset
  3. def EmptyBody: EntityBody
  4. object AttributeKey
  5. object AttributeMap
  6. object AuthScheme
  7. object AuthedRequest extends Serializable
  8. object AuthedService extends Serializable
  9. object BasicCredentials extends Serializable
  10. object BuildInfo extends Product with Serializable

    This object was generated by sbt-buildinfo.

  11. object CacheDirective

    A registry of cache-directives, as listed in http://www.iana.org/assignments/http-cache-directives/http-cache-directives.xhtml

  12. object Charset extends Serializable
  13. object CharsetRange extends CharsetRangeInstances
  14. object ContentCoding extends Registry with Serializable
  15. object Credentials
  16. object DecodeResult
  17. object EntityDecoder extends EntityDecoderInstances

    EntityDecoder is used to attempt to decode an EntityBody This companion object provides a way to create new EntityDecoders along with some commonly used instances which can be resolved implicitly.

  18. object EntityEncoder extends EntityEncoderInstances
  19. object Header
  20. object HeaderKey
  21. object Headers
  22. object Http4s extends Http4s
  23. object Http4sFunctions extends Http4sFunctions
  24. object Http4sInstances extends Http4sInstances
  25. object HttpDate
  26. object HttpService extends Serializable
  27. object HttpVersion extends HttpVersionInstances with Serializable
  28. object LanguageTag extends Serializable
  29. object MaybeResponse
  30. object MediaRange extends Registry
  31. object MediaType extends Registry
  32. object Message
  33. object MessageSyntax extends MessageSyntax
  34. object Method extends MethodInstances with Serializable
  35. object ParseFailure extends Serializable
  36. object ParseResult
  37. object Pass extends MaybeResponse with Product with Serializable
  38. object QValue extends QValueInstances with QValueFunctions
  39. object Query
  40. object QueryParam
  41. object QueryParamDecoder
  42. object QueryParamEncoder
  43. object QueryParamKeyLike
  44. object RangeUnit extends Serializable
  45. object Request extends Serializable
  46. object RequestCookieJar
  47. object Response extends Serializable
  48. object ServerSentEvent extends Serializable
  49. object Service
  50. object StaticFile
  51. object Status extends Serializable
  52. object TransferCoding extends Registry with Serializable
  53. object Uri extends UriFunctions with Serializable
  54. object UriTemplate extends Serializable
  55. object UrlForm
  56. object implicits extends AllSyntax

Deprecated Value Members

  1. val Http4sSyntax: all.type
    Annotations
    @deprecated
    Deprecated

    (Since version 0.16) Moved to org.http4s.syntax.all

Inherited from AnyRef

Inherited from Any

Ungrouped