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. 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.

  7. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

  17. def maybeApplication: Option[Application]

    Permalink

    Optionally returns the current running application.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def start(app: Application): Unit

    Permalink

    Starts this application.

    Starts this application.

    app

    the application to start

  22. def stop(app: Application): Unit

    Permalink

    Stops the given application.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. def unsafeApplication: Application

    Permalink

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

  26. final def wait(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. 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

    inject the play.api.Application instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Configuration instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.Environment instead

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

    Permalink

    Annotations
    @Deprecated
    Deprecated

    inject the play.api.routing.Router instead

Inherited from AnyRef

Inherited from Any

Ungrouped