Packages

  • package root
    Definition Classes
    root
  • package play

    Play framework.

    Play framework.

    Play

    http://www.playframework.com

    Definition Classes
    root
  • package api

    Contains the public API for Scala developers.

    Contains the public API for Scala developers.

    Read configuration
    val poolSize = configuration.getInt("engine.pool.size")
    Use the logger
    Logger.info("Hello!")
    Define a Plugin
    class MyPlugin(app: Application) extends Plugin
    Create adhoc applications (for testing)
    val application = Application(new File("."), this.getClass.getClassloader, None, Play.Mode.DEV)
    Definition Classes
    play
  • package routing
    Definition Classes
    api
  • object Router

    Utilities for routing.

    Utilities for routing.

    Definition Classes
    routing
  • object RequestImplicits
    Definition Classes
    Router
  • WithHandlerDef

implicit final class WithHandlerDef extends AnyVal

Source
Router.scala
Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WithHandlerDef
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new WithHandlerDef(request: RequestHeader)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. def handlerDef: Option[HandlerDef]

    The HandlerDef representing the routes file entry (if any) on this request.

  7. def hasRouteModifier(modifier: String): Boolean

    Check if the route for this request has the given modifier tag (case insensitive).

    Check if the route for this request has the given modifier tag (case insensitive).

    This can be used by a filter to change behavior.

  8. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  9. val request: RequestHeader
  10. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped