class post extends WebEndpoint

Linear Supertypes
WebEndpoint, router.HttpEndpoint[Raw, Seq[String]], Endpoint[Raw, Seq[String]], Decorator[Raw, Seq[String]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. post
  2. WebEndpoint
  3. HttpEndpoint
  4. Endpoint
  5. Decorator
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new post(path: String, subpath: Boolean = false)

Type Members

  1. final type Delegate = (Map[String, Seq[String]]) ⇒ Result[Raw]
    Definition Classes
    Decorator
  2. type InputParser[T] = QueryParamReader[T]
    Definition Classes
    WebEndpointDecorator
  3. final type InputTypeAlias = Seq[String]
    Definition Classes
    Decorator
  4. type OuterReturned = Result[Raw]
    Definition Classes
    HttpEndpointDecorator

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. def convertToResultType[T](t: T)(implicit f: Conversion[T, Raw]): Raw
    Definition Classes
    Endpoint
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def getParamParser[T](implicit p: InputParser[T]): InputParser[T]
    Definition Classes
    Decorator
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. val methods: Seq[String]

    Which HTTP methods does this endpoint support? POST? GET? PUT? Or some combination of those?

    Which HTTP methods does this endpoint support? POST? GET? PUT? Or some combination of those?

    Definition Classes
    postEndpoint
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. val path: String

    What is the path that this particular endpoint matches?

    What is the path that this particular endpoint matches?

    Definition Classes
    postEndpoint
  18. val subpath: Boolean

    Whether or not this endpoint allows matching on sub-paths: does @endpoint("/foo") capture the path "/foo/bar/baz"? Useful to e.g.

    Whether or not this endpoint allows matching on sub-paths: does @endpoint("/foo") capture the path "/foo/bar/baz"? Useful to e.g. have an endpoint match URLs with paths in a filesystem (real or virtual) to serve files

    Definition Classes
    postEndpoint
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def wrapFunction(ctx: model.Request, delegate: Delegate): Result[Raw]
    Definition Classes
    WebEndpointDecorator
  25. def wrapPathSegment(s: String): Seq[String]

    HttpEndpoints are unique among decorators in that they alone can bind path segments to parameters, e.g.

    HttpEndpoints are unique among decorators in that they alone can bind path segments to parameters, e.g. binding /hello/:world to (world: Int). In order to do so, we need to box up the path segment strings into an Input so they can later be parsed by getParamParser into an instance of the appropriate type.

    Definition Classes
    WebEndpointEndpoint

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from WebEndpoint

Inherited from router.HttpEndpoint[Raw, Seq[String]]

Inherited from Endpoint[Raw, Seq[String]]

Inherited from Decorator[Raw, Seq[String]]

Inherited from AnyRef

Inherited from Any

Ungrouped