Packages

case class ReverseRouteContext(fixedParams: Map[String, Any]) extends Product with Serializable

The context for a reverse route.

This is made available implicitly to PathBindables and QueryStringBindables in the reverse router so that they can query the fixed params that are passed to the action.

An empty reverse router context is made available implicitly to the router and JavaScript router.

fixedParams

The fixed params that this route passes to the action.

Source
ReverseRouteContext.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReverseRouteContext
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ReverseRouteContext(fixedParams: Map[String, Any])

    fixedParams

    The fixed params that this route passes to the action.

Value Members

  1. val fixedParams: Map[String, Any]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product