Package

org

scalatra

Permalink

package scalatra

Linear Supertypes
Control, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. scalatra
  2. Control
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. type Action = () ⇒ Any

    Permalink
  2. type ContentTypeInferrer = PartialFunction[Any, String]

    Permalink
  3. type CoreStack = CorsSupport with FutureSupport with FlashMapSupport

    Permalink
  4. type CoreStackNoFlash = CorsSupport with FutureSupport

    Permalink
  5. type CoreStackNoFlashWithCsrf = CoreStackNoFlash with CsrfTokenSupport

    Permalink
  6. type CoreStackNoFlashWithXsrf = CoreStackNoFlash with XsrfTokenSupport

    Permalink
  7. type CoreStackWithCsrf = CoreStack with CsrfTokenSupport

    Permalink
  8. type CoreStackWithXsrf = CoreStack with XsrfTokenSupport

    Permalink
  9. type ErrorHandler = PartialFunction[Throwable, Any]

    Permalink
  10. type FileUploadStack = FutureSupport with FlashMapSupport with FileUploadSupport

    Permalink
  11. type FullCoreStack = CoreStack with FileUploadSupport

    Permalink
  12. type FuturesAndFlashStack = FutureSupport with FlashMapSupport

    Permalink
  13. type FuturesAndFlashStackWithCsrf = FuturesAndFlashStack with CsrfTokenSupport

    Permalink
  14. type FuturesAndFlashStackWithXsrf = FuturesAndFlashStack with XsrfTokenSupport

    Permalink
  15. type MultiParams = MultiMap

    Permalink
  16. type Params = MultiMapHeadView[String, String] with MapWithIndifferentAccess[String]

    Permalink
  17. type RenderPipeline = PartialFunction[Any, Any]

    Permalink
  18. trait SkinnyScalatraBase extends ScalatraBase with Logging

    Permalink

    Partially patched ScalatraBase for Skinny Framework.

    Partially patched ScalatraBase for Skinny Framework.

    Scalatra runs only the first one of after filters. The others are skipped due to the servlet/filter is already marked as "org.scalatra.ScalatraFilter.afterFilters.Run". This means that when several Scalatra filters is already definied below at ScalatraBootstrap.scala, current ScalatraFilter's after callbacks would be ignored (even though all the before callbacks are called).

    So We've patched ScalatraBase to ignore "org.scalatra.ScalatraFilter.afterFilters.Run" only for Filters. Hope Scalatra to support ignoring "org.scalatra.ScalatraFilter.afterFilters.Run" option to 3rd party.

  19. type ScalatraKernel = ServletBase

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.1.0) Use org.scalatra.servlet.ServletBase if you depend on the Servlet API, or org.scalatra.ScalatraBase if you don't.

Value Members

  1. val EnvironmentKey: String

    Permalink
  2. val MultiParamsKey: String

    Permalink
  3. def halt(result: ActionResult): Nothing

    Permalink
    Definition Classes
    Control
  4. def halt[T](status: Integer, body: T, headers: Map[String, String], reason: String)(implicit arg0: Manifest[T]): Nothing

    Permalink
    Definition Classes
    Control
  5. def pass(): Nothing

    Permalink
    Definition Classes
    Control

Inherited from Control

Inherited from AnyRef

Inherited from Any

Ungrouped