Package

wvlet.airframe

http

Permalink

package http

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. http
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ControllerProvider extends AnyRef

    Permalink

  2. trait ControllerProviderFromSession extends ControllerProvider with LogSupport

    Permalink
  3. class Endpoint extends Annotation with Annotation with ClassfileAnnotation

    Permalink
  4. final class HttpMethod extends Enum[HttpMethod]

    Permalink
  5. trait HttpRequest[Req] extends AnyRef

    Permalink
  6. trait HttpResponse extends AnyRef

    Permalink
  7. trait ResponseHandler[Req, Res] extends AnyRef

    Permalink
  8. case class Route(controllerSurface: Surface, method: HttpMethod, path: String, methodSurface: ReflectMethodSurface) extends LogSupport with Product with Serializable

    Permalink
  9. class Router extends AnyRef

    Permalink

    Provides mapping from HTTP requests to controller methods (= Route)

  10. case class ServerAddress(host: String, port: Int, scheme: Option[String] = None) extends Product with Serializable

    Permalink

    Server address holder

  11. case class SimpleHttpRequest(method: HttpMethod, path: String, query: Map[String, String] = Map.empty, contentString: String = "") extends HttpRequest[SimpleHttpRequest] with Product with Serializable

    Permalink

Value Members

  1. object Router extends LogSupport

    Permalink
  2. object RouterMacros

    Permalink

    Macros for creating a trait factory (Session => A) so that we can register the factory upon defining Route.of[A].

    Macros for creating a trait factory (Session => A) so that we can register the factory upon defining Route.of[A].

    So once you register a route for A, you don't need to call bind[A].toSingleton, etc.

  3. object ServerAddress extends LogSupport

    Permalink
  4. def httpDefaultDesign: Design

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped