object ScalaPactForger
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ScalaPactForger
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed trait ForgePactElements extends AnyRef
- case class ScalaPactDescriptionFinal(consumer: String, provider: String, serverSslContextName: Option[String], interactions: List[ScalaPactInteractionFinal], options: ScalaPactOptions) extends Product with Serializable
- class ScalaPactInteraction extends AnyRef
- case class ScalaPactInteractionFinal(description: String, providerState: Option[String], sslContextName: Option[String], request: ScalaPactRequest, response: ScalaPactResponse) extends Product with Serializable
- sealed trait ScalaPactMatchingRule extends AnyRef
- case class ScalaPactMatchingRuleArrayMinLength(key: String, minimum: Int) extends ScalaPactMatchingRule with Product with Serializable
- case class ScalaPactMatchingRuleRegex(key: String, regex: String) extends ScalaPactMatchingRule with Product with Serializable
- case class ScalaPactMatchingRuleType(key: String) extends ScalaPactMatchingRule with Product with Serializable
- case class ScalaPactMatchingRules(rules: List[ScalaPactMatchingRule]) extends Product with Serializable
- sealed trait ScalaPactMethod extends AnyRef
- case class ScalaPactOptions(writePactFiles: Boolean, outputPath: String) extends Product with Serializable
- case class ScalaPactRequest(method: ScalaPactMethod, path: String, query: Option[String], headers: Map[String, String], body: Option[String], matchingRules: Option[List[ScalaPactMatchingRule]]) extends Product with Serializable
- case class ScalaPactResponse(status: Int, headers: Map[String, String], body: Option[String], matchingRules: Option[List[ScalaPactMatchingRule]]) extends Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- implicit val options: ScalaPactOptions
- implicit def rulesToOptionalList(rules: ScalaPactMatchingRules): Option[List[ScalaPactMatchingRule]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- implicit def toOption[A](a: A): Option[A]
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object CONNECT extends ScalaPactMethod with Product with Serializable
- object DELETE extends ScalaPactMethod with Product with Serializable
- object GET extends ScalaPactMethod with Product with Serializable
- object HEAD extends ScalaPactMethod with Product with Serializable
- object OPTIONS extends ScalaPactMethod with Product with Serializable
- object PATCH extends ScalaPactMethod with Product with Serializable
- object POST extends ScalaPactMethod with Product with Serializable
- object PUT extends ScalaPactMethod with Product with Serializable
- object ScalaPactOptions extends Serializable
- object ScalaPactRequest extends Serializable
- object ScalaPactResponse extends Serializable
- object TRACE extends ScalaPactMethod with Product with Serializable
- object bodyArrayMinimumLengthRule
- object bodyRegexRule
- object bodyTypeRule
- object forgePact extends ForgePactElements
- object forgeStrictPact extends ForgePactElements
- object headerRegexRule
- object interaction