Package

com.m3.curly

scala

Permalink

package scala

Visibility
  1. Public
  2. All

Type Members

  1. case class FileInput(file: File, contentType: String) extends FormData.FileInput with Product with Serializable

    Permalink

    Body from a file

    Body from a file

    file

    file

    contentType

    content type

  2. case class FormData(name: String, bytes: Array[Byte] = null, text: TextInput = NoTextInput, file: FileInput = NoFileInput) extends curly.FormData with Product with Serializable

    Permalink

    Form data

    Form data

    name

    name

    bytes

    body as a byte array

    text

    body from a text value

    file

    body from a file

  3. case class Method(name: String) extends curly.Method with Product with Serializable

    Permalink

    HTTP/1.1 Method

    HTTP/1.1 Method

    name

    name

  4. case class Request(url: String) extends Product with Serializable

    Permalink

    Request

    Request

    url

    url

  5. case class RequestBody(underlying: curly.RequestBody) extends Product with Serializable

    Permalink

    Request body

    Request body

    underlying

    underlying Java instance

  6. case class Response(underlying: curly.Response) extends Product with Serializable

    Permalink

    Response

    Response

    underlying

    underlying Java instance

  7. case class TextInput(textBody: String, charset: String = "UTF-8") extends FormData.TextInput with Product with Serializable

    Permalink

    Body from a text value

    Body from a text value

    textBody

    text

    charset

    charset

Value Members

  1. object HTTP

    Permalink

    HTTP

  2. object Method extends Serializable

    Permalink
  3. object NoFileInput extends FileInput

    Permalink

    No file input

  4. object NoTextInput extends TextInput

    Permalink

    No text input

Ungrouped