object Input
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Input
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class AddHeader(name: String) extends TypedInput[String] with Product with Serializable
Add an header with value.
- case class AddQueryParameter(name: String) extends TypedInput[String] with Product with Serializable
Add a query parameter
- case class ExtraPathFixed(pathElements: List[String]) extends Input with Product with Serializable
Add an extra non-dynamic path (to be used after ExtraPath).
- case class MappedInput[From, To, Underlying <: TypedInput[From]](original: Underlying, mapping: PureMapping[From, To]) extends TypedInput[To] with Product with Serializable
Maps a typed input to another type B.
- case class MappedPayload[T](mapping: Mapping[T], maxLength: Option[Long] = None) extends TypedInput[T] with Product with Serializable
Map payload to some value.
- case class Multipart[Parts <: HList](parts: Parts) extends Input with Product with Serializable
Multipart input (Constructed by make Methods in Multipart$ functions )
- trait MultipartPart extends AnyRef
- case class QueryParameterMap[T](mapping: PureMapping[Map[String, String], T]) extends TypedInput[T] with Product with Serializable
Parse query parameters into a circe-extended class, values are converted into strings before.
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 circe[T](limit: Option[Long] = None)(implicit encoder: Encoder[T], decoder: Decoder[T]): MappedPayload[T]
- def circeQuery[T](implicit encoder: AsObject[T], decoder: Decoder[T]): QueryParameterMap[T]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def pureMapping[A, B](mapping: (A) => Either[String, B], contraMap: (B) => Either[String, A]): PureMapping[A, B]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def text(limit: Option[Long] = None): MappedPayload[String]
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- case object Binary extends Input with Product with Serializable
Expect a binary input stream (with content type).
Expect a binary input stream (with content type). Resulting type should be something like content-type and binary data.
- case object ExtraPath extends TypedInput[String] with Product with Serializable
Add an extra dynamic path.
- object Multipart extends Serializable
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated