io.gatling.http.request.builder

RequestBuilder

Related Docs: object RequestBuilder | package builder

abstract class RequestBuilder[B <: RequestBuilder[B]] extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RequestBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RequestBuilder()

Abstract Value Members

  1. abstract def commonAttributes: CommonAttributes

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def address(address: InetAddress): B

  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def asJSON: B

    Adds Accept and Content-Type headers to the request set with "application/json" values

  7. def asXML: B

    Adds Accept and Content-Type headers to the request set with "application/xml" values

  8. def authRealm(realm: Expression[Realm]): B

  9. def basicAuth(username: Expression[String], password: Expression[String]): B

    Adds BASIC authentication to the request

    Adds BASIC authentication to the request

    username

    the username needed

    password

    the password needed

  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def digestAuth(username: Expression[String], password: Expression[String]): B

  12. def disableUrlEncoding: B

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. def header(name: String, value: Expression[String]): B

    Adds a header to the request

    Adds a header to the request

    name

    the name of the header

    value

    the value of the header

  19. def headers(newHeaders: Map[String, String]): B

    Adds several headers to the request at the same time

    Adds several headers to the request at the same time

    newHeaders

    a scala map containing the headers to add

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def multivaluedQueryParam(key: Expression[String], values: Expression[Seq[Any]]): B

  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def ntlmAuth(username: Expression[String], password: Expression[String], ntlmDomain: Expression[String], ntlmHost: Expression[String]): B

  26. def proxy(httpProxy: Proxy): B

  27. def queryParam(key: Expression[String], value: Expression[Any]): B

  28. def queryParamMap(map: Expression[Map[String, Any]]): B

  29. def queryParamMap(map: Map[String, Any]): B

  30. def queryParamSeq(seq: Expression[Seq[(String, Any)]]): B

  31. def queryParamSeq(seq: Seq[(String, Any)]): B

  32. def signatureCalculator(calculator: (Request, RequestBuilderBase[_]) ⇒ Unit): B

  33. def signatureCalculator(calculator: SignatureCalculator): B

  34. def signatureCalculator(calculator: Expression[SignatureCalculator]): B

  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def toString(): String

    Definition Classes
    AnyRef → Any
  37. def virtualHost(virtualHost: Expression[String]): B

    virtualHost

    a virtual host to override default compute one

  38. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped