Object

play.api

Play

Related Doc: package api

Permalink

object Play

High-level API to access Play global features.

Note that this API depends on a running application. You can import the currently running application in a scope using:

import play.api.Play.current
Source
Play.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Play
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

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. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. def langCookieHttpOnly(implicit messagesApi: MessagesApi): Boolean

    Permalink

    Returns whether the language cookie should have the HTTP only flag set.

  13. def langCookieName(implicit messagesApi: MessagesApi): String

    Permalink

    Returns the name of the cookie that can be used to permanently set the user's language.

  14. def langCookieSecure(implicit messagesApi: MessagesApi): Boolean

    Permalink

    Returns whether the language cookie should have the secure flag set.

  15. implicit def materializer(implicit app: Application): Materializer

    Permalink

    A convenient function for getting an implicit materializer from the current application

  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. def routesCompilerMaybeApplication: Option[Application]

    Permalink
  20. def start(app: Application): Unit

    Permalink

    Starts this application.

    Starts this application.

    app

    the application to start

  21. def stop(app: Application): Unit

    Permalink

    Stops the given application.

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

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

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

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

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

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

Deprecated Value Members

  1. def application(implicit app: Application): Application

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  2. def classloader(implicit app: Application): ClassLoader

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  3. def configuration(implicit app: Application): Configuration

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  4. implicit def current: Application

    Permalink

    Implicitly import the current running application in the context.

    Implicitly import the current running application in the context.

    Note that by relying on this, your code will only work properly in the context of a running application.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) This is a static reference to application, use DI instead

  5. def getExistingFile(relativePath: String)(implicit app: Application): Option[File]

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  6. def getFile(relativePath: String)(implicit app: Application): File

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  7. def isDev(implicit app: Application): Boolean

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  8. def isProd(implicit app: Application): Boolean

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  9. def isTest(implicit app: Application): Boolean

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  10. def maybeApplication: Option[Application]

    Permalink

    Optionally returns the current running application.

    Optionally returns the current running application.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) This is a static reference to application, use DI instead

  11. def mode(implicit app: Application): Mode.Mode

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  12. def resource(name: String)(implicit app: Application): Option[URL]

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  13. def resourceAsStream(name: String)(implicit app: Application): Option[InputStream]

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  14. def routes(implicit app: Application): Router

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) inject the play.api.Environment instead

  15. def unsafeApplication: Application

    Permalink

    Returns the currently running application, or null if not defined.

    Returns the currently running application, or null if not defined.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.0) This is a static reference to application, use DI

Inherited from AnyRef

Inherited from Any

Ungrouped