t

play.filters.csp

CSPComponents

trait CSPComponents extends api.BuiltInComponents

The content security policy components, for compile time dependency injection.

Source
CSPModule.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CSPComponents
  2. BuiltInComponents
  3. AkkaTypedComponents
  4. AkkaComponents
  5. I18nComponents
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def applicationLifecycle: ApplicationLifecycle

    A registry to receive application lifecycle events, e.g.

    A registry to receive application lifecycle events, e.g. to close resources when the application stops.

    Definition Classes
    BuiltInComponentsAkkaComponents
  2. abstract def configuration: Configuration

    The application's configuration.

    The application's configuration.

    Definition Classes
    CSPComponentsBuiltInComponentsAkkaComponentsI18nComponents
  3. abstract def environment: api.Environment

    The application's environment, e.g.

    The application's environment, e.g. it's ClassLoader and root path.

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

    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])
      }
    }
    Definition Classes
    BuiltInComponents
  5. abstract def router: Router

    The router that's used to pass requests to the correct handler.

    The router that's used to pass requests to the correct handler.

    Definition Classes
    BuiltInComponents

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def Action: DefaultActionBuilder

    Alias method to defaultActionBuilder.

    Alias method to defaultActionBuilder. This just helps to keep the idiom of using Action when creating Routers using the built in components.

    returns

    the default action builder.

    Attributes
    protected
    Definition Classes
    BuiltInComponents
  5. lazy val actorSystem: ActorSystem
    Definition Classes
    AkkaComponents
  6. lazy val application: api.Application
    Definition Classes
    BuiltInComponents
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. lazy val cookieSigner: CookieSigner
    Definition Classes
    BuiltInComponents
  10. lazy val coordinatedShutdown: CoordinatedShutdown
    Definition Classes
    AkkaComponents
  11. lazy val cspActionBuilder: CSPActionBuilder
  12. lazy val cspConfig: CSPConfig
  13. lazy val cspFilter: CSPFilter
  14. lazy val cspProcessor: CSPProcessor
  15. lazy val cspReportAction: CSPReportActionBuilder
  16. lazy val cspReportBodyParser: CSPReportBodyParser
  17. lazy val cspResultProcessor: CSPResultProcessor
  18. lazy val csrfTokenSigner: CSRFTokenSigner
    Definition Classes
    BuiltInComponents
  19. lazy val defaultActionBuilder: DefaultActionBuilder
    Definition Classes
    BuiltInComponents
  20. lazy val defaultBodyParser: BodyParser[AnyContent]
    Definition Classes
    BuiltInComponents
  21. def devContext: Option[DevContext]

    Helper to interact with the Play build environment.

    Helper to interact with the Play build environment. Only available in dev mode.

    Definition Classes
    BuiltInComponents
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  24. implicit lazy val executionContext: ExecutionContext
    Definition Classes
    AkkaComponents
  25. lazy val fileMimeTypes: FileMimeTypes
    Definition Classes
    BuiltInComponents
  26. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. lazy val httpConfiguration: HttpConfiguration
    Definition Classes
    BuiltInComponentsI18nComponents
  30. lazy val httpErrorHandler: HttpErrorHandler
    Definition Classes
    BuiltInComponents
  31. lazy val httpRequestHandler: HttpRequestHandler
    Definition Classes
    BuiltInComponents
  32. lazy val injector: Injector

    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.

    Definition Classes
    BuiltInComponents
  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. lazy val langs: Langs
    Definition Classes
    I18nComponents
  35. implicit lazy val materializer: Materializer
    Definition Classes
    AkkaComponents
  36. lazy val messagesApi: MessagesApi
    Definition Classes
    I18nComponents
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. def parse: PlayBodyParsers

    Alias method to playBodyParsers.

    Alias method to playBodyParsers.

    Attributes
    protected
    Definition Classes
    BuiltInComponents
  41. lazy val playBodyParsers: PlayBodyParsers
    Definition Classes
    BuiltInComponents
  42. lazy val requestFactory: RequestFactory
    Definition Classes
    BuiltInComponents
  43. implicit lazy val scheduler: Scheduler
    Definition Classes
    AkkaTypedComponents
  44. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  45. lazy val tempFileCreator: TemporaryFileCreator
    Definition Classes
    BuiltInComponents
  46. lazy val tempFileReaper: TemporaryFileReaper
    Definition Classes
    BuiltInComponents
  47. def toString(): String
    Definition Classes
    AnyRef → Any
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  51. def webCommands: WebCommands

    Commands that intercept requests before the rest of the application handles them.

    Commands that intercept requests before the rest of the application handles them. Used by Evolutions.

    Definition Classes
    BuiltInComponents

Deprecated Value Members

  1. lazy val javaContextComponents: JavaContextComponents
    Definition Classes
    BuiltInComponents
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Use the corresponding methods that provide MessagesApi, Langs, FileMimeTypes or HttpConfiguration

  2. def sourceMapper: Option[SourceMapper]

    Helper to locate the source code for the application.

    Helper to locate the source code for the application. Only available in dev mode.

    Definition Classes
    BuiltInComponents
    Annotations
    @deprecated
    Deprecated

    (Since version 2.7.0) Use devContext.map(_.sourceMapper) instead

Inherited from api.BuiltInComponents

Inherited from AkkaTypedComponents

Inherited from AkkaComponents

Inherited from I18nComponents

Inherited from AnyRef

Inherited from Any

Ungrouped