Trait

play.api

BuiltInComponents

Related Doc: package api

Permalink

trait BuiltInComponents extends I18nComponents

Helper to provide the Play built in components.

Source
Application.scala
Linear Supertypes
I18nComponents, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BuiltInComponents
  2. I18nComponents
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def applicationLifecycle: ApplicationLifecycle

    Permalink
  2. abstract def configuration: Configuration

    Permalink
    Definition Classes
    BuiltInComponentsI18nComponents
  3. abstract def environment: Environment

    Permalink
    Definition Classes
    BuiltInComponentsI18nComponents
  4. abstract def httpFilters: Seq[EssentialFilter]

    Permalink

    List of filters, typically provided by mixing in play.filters.HttpFiltersComponents or play.api.NoHttpFiltersComponents.

    List of filters, typically provided by mixing in play.filters.HttpFiltersComponents or play.api.NoHttpFiltersComponents.

    In most cases you will want to mixin HttpFiltersComponents and append your own filters:

    class MyComponents(context: ApplicationLoader.Context)
      extends BuiltInComponentsFromContext(context)
      with play.filters.HttpFiltersComponents {
    
      lazy val loggingFilter = new LoggingFilter()
      override def httpFilters = {
        super.httpFilters :+ loggingFilter
      }
    }

    If you want to filter elements out of the list, you can do the following:

    class MyComponents(context: ApplicationLoader.Context)
      extends BuiltInComponentsFromContext(context)
      with play.filters.HttpFiltersComponents {
      override def httpFilters = {
        super.httpFilters.filterNot(_.getClass == classOf[CSRFFilter])
      }
    }
  5. abstract def router: Router

    Permalink
  6. abstract def sourceMapper: Option[SourceMapper]

    Permalink
  7. abstract def webCommands: WebCommands

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. lazy val actorSystem: ActorSystem

    Permalink
  5. lazy val application: Application

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. lazy val cookieSigner: CookieSigner

    Permalink
  9. lazy val csrfTokenSigner: CSRFTokenSigner

    Permalink
  10. lazy val defaultActionBuilder: DefaultActionBuilder

    Permalink
  11. lazy val defaultBodyParser: BodyParser[AnyContent]

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. implicit lazy val executionContext: ExecutionContext

    Permalink
  15. lazy val fileMimeTypes: FileMimeTypes

    Permalink
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. lazy val httpConfiguration: HttpConfiguration

    Permalink
    Definition Classes
    BuiltInComponentsI18nComponents
  20. lazy val httpErrorHandler: HttpErrorHandler

    Permalink
  21. lazy val httpRequestHandler: HttpRequestHandler

    Permalink
  22. lazy val injector: Injector

    Permalink

    The runtime Injector instance provided to the DefaultApplication.

    The runtime Injector instance provided to the DefaultApplication. This injector is set up to allow existing (deprecated) legacy APIs to function. It is not set up to support injecting arbitrary Play components.

  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. lazy val javaContextComponents: JavaContextComponents

    Permalink
  25. lazy val langs: Langs

    Permalink
    Definition Classes
    I18nComponents
  26. implicit lazy val materializer: Materializer

    Permalink
  27. lazy val messagesApi: MessagesApi

    Permalink
    Definition Classes
    I18nComponents
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. lazy val playBodyParsers: PlayBodyParsers

    Permalink
  32. lazy val requestFactory: RequestFactory

    Permalink
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. lazy val tempFileCreator: TemporaryFileCreator

    Permalink
  35. lazy val tempFileReaper: TemporaryFileReaper

    Permalink
  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from I18nComponents

Inherited from AnyRef

Inherited from Any

Ungrouped