package http
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- http
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed trait HttpMethodConfig extends AnyRef
- case class HttpProfileConfig(name: String, profile: List[HttpRequestConfig]) extends ProfileConfig with Product with Serializable
- case class HttpRequestConfig(name: String, probability: Double, method: HttpMethodConfig, url: String, body: Option[String]) extends RequestConfig with Product with Serializable
Value Members
- lazy val buildHttpProfileFromConf: (String) => HttpProfileConfig
- lazy val buildHttpProfileFromYaml: (String) => HttpProfileConfig
- implicit val httpMethodConvert: ConfigReader[HttpMethodConfig]
- case object DELETE extends HttpMethodConfig with Product with Serializable
- case object GET extends HttpMethodConfig with Product with Serializable
- case object POST extends HttpMethodConfig with Product with Serializable
- case object PUT extends HttpMethodConfig with Product with Serializable