Packages

  • package root
    Definition Classes
    root
  • package scamper

    At the core Scamper is HttpMessage, which is a trait that defines the fundamental characteristics of an HTTP message.

    HTTP Messages

    At the core Scamper is HttpMessage, which is a trait that defines the fundamental characteristics of an HTTP message. HttpRequest and HttpResponse extend the specification to define characteristics specific to their respective message types.

    An HttpRequest can be created using one of the factory methods defined in its companion object. Or you can start with a RequestMethod and use builder methods to further define the request.

    import scamper.Header
    import scamper.Implicits.stringToUri
    import scamper.RequestMethods.GET
    
    val request = GET("/motd").withHeaders(
      Header("Host", "localhost:8080"),
      Header("Accept", "text/plain")
    )
    
    printf("Request Method: %s%n", request.method)
    printf("Target URI: %s%n", request.target)
    
    request.headers.foreach(println)
    
    val host: Option[String] = request.getHeaderValue("Host")

    An HttpResponse can be created using one of the factory methods defined in its companion object. Or you can start with a ResponseStatus and use builder methods to further define the response.

    import scamper.{ BodyParsers, Header }
    import scamper.Implicits.stringToEntity
    import scamper.ResponseStatuses.Ok
    
    val response = Ok("There is an answer.").withHeaders(
      Header("Content-Type", "text/plain"),
      Header("Connection", "close")
    )
    
    printf("Status Code: %s%n", response.status.code)
    printf("Reason Phrase: %s%n", response.status.reason)
    
    response.headers.foreach(println)
    
    val contentType: Option[String] = response.getHeaderValue("Content-Type")
    
    implicit val parser = BodyParsers.text()
    
    printf("Body: %s%n", response.as[String])
    Definition Classes
    root
  • package headers

    Provides specialized access to message headers.

    Provides specialized access to message headers.

    Using Header Classes

    Specialized header access is provided by type classes. Some headers are available to both requests and responses, and others are available only to a specific message type. This behavior is driven by the HTTP specification.

    import scamper.Implicits.stringToUri
    import scamper.RequestMethods.GET
    import scamper.headers.{ Accept, Host }
    import scamper.types.Implicits.stringToMediaRange
    
    // Build request using 'Host' and 'Accept' headers
    val req = GET("/motd").withHost("localhost:8080").withAccept("text/plain")
    
    // Access and print header values
    printf("Host: %s%n", req.host)
    printf("Accept: %s%n", req.accept.head)
    Definition Classes
    scamper
  • Accept
  • AcceptCharset
  • AcceptEncoding
  • AcceptLanguage
  • AcceptPatch
  • AcceptRanges
  • Age
  • Allow
  • CacheControl
  • Connection
  • ContentDisposition
  • ContentEncoding
  • ContentLanguage
  • ContentLength
  • ContentLocation
  • ContentRange
  • ContentType
  • Date
  • ETag
  • EarlyData
  • Expect
  • Expires
  • From
  • Host
  • IfMatch
  • IfModifiedSince
  • IfNoneMatch
  • IfRange
  • IfUnmodifiedSince
  • LastModified
  • Link
  • Location
  • MaxForwards
  • Pragma
  • Prefer
  • PreferenceApplied
  • Range
  • Referer
  • RetryAfter
  • Server
  • TE
  • Trailer
  • TransferEncoding
  • Upgrade
  • UserAgent
  • Vary
  • Via
  • Warning

implicit final class TE extends AnyVal

Provides standardized access to TE header.

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TE
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TE(request: HttpRequest)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. def getTE: Option[Seq[TransferCodingRange]]

    Gets TE header values if present.

  7. def hasTE: Boolean

    Tests whether TE header is present.

  8. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  9. def removeTE(): HttpRequest

    Creates new request removing TE header.

  10. val request: HttpRequest
  11. def te: Seq[TransferCodingRange]

    Gets TE header values.

    Gets TE header values.

    returns

    header values or empty sequence if TE is not present

  12. def toString(): String
    Definition Classes
    Any
  13. def withTE(values: TransferCodingRange*): HttpRequest

    Creates new request setting TE header to supplied values.

Inherited from AnyVal

Inherited from Any

Ungrouped