package routing
- Alphabetic
- Public
- All
Type Members
-
case class
HandlerDef(classLoader: ClassLoader, routerPackage: String, controller: String, method: String, parameterTypes: Seq[Class[_]], verb: String, path: String, comments: String = "", modifiers: Seq[String] = Seq.empty) extends routing.HandlerDef with Product with Serializable
Information about a
Handler
, especially useful for loading the handler with reflection. -
case class
JavaScriptReverseRoute(name: String, f: String) extends Product with Serializable
A JavaScript reverse route
-
trait
Router extends AnyRef
A router.
-
trait
SimpleRouter extends Router
A simple router that implements the withPrefix and documentation methods for you.
- class SimpleRouterImpl extends SimpleRouter
Value Members
- object JavaScriptReverseRouter
-
object
Router
Utilities for routing.
- object SimpleRouter