Packages

  • package root
    Definition Classes
    root
  • package xitrum

    Things that are usually used by application developers are put in this package for convenience, because when they want to use XXX, they can simply write:

    Things that are usually used by application developers are put in this package for convenience, because when they want to use XXX, they can simply write:

    import xitrum.XXX

    To avoid polluting this namespace, things that are utilities should be put in package xitrum.util, not here.

    Annotations and validators are put to package xitrum.annation and xitrum.validator because there are many of them. It's better for application developers to write:

    import xitrum.annotation._
    import xitrum.validator._
    Definition Classes
    root
  • package scope
    Definition Classes
    xitrum
  • package request
    Definition Classes
    scope
  • At
  • ParamAccess
  • PathInfo
  • RequestEnv
  • package session
    Definition Classes
    scope
p

xitrum.scope

request

package request

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

Type Members

  1. class At extends HashMap[String, Any]

    Equivalent to @xxx variables of Rails

  2. type FileUploadParams = Map[String, Seq[FileUpload]]
  3. trait ParamAccess extends AnyRef
  4. type Params = Map[String, Seq[String]]
  5. class PathInfo extends AnyRef

    URL: http://example.com/articles?page=2 => encoded: /articles

  6. trait RequestEnv extends ParamAccess

    All core state variables for a request are here.

    All core state variables for a request are here. All other variables in Helper and Controller can be inferred from these variables.

Value Members

  1. object ParamAccess

    Use "manifest" for Scala 2.10 and "typeOf" for Scala 2.11: https://github.com/ngocdaothanh/xitrum/issues/155

  2. object RequestEnv

Inherited from AnyRef

Inherited from Any

Ungrouped