Object

play.api

Play

Related Doc: package api

Permalink

object Play

High-level API to access Play global features.

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

    Sets the global application instance.

    Sets the global application instance.

    If another app was previously started using this API and the global application is enabled, Play.stop will be called on the existing 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. 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

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

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