trait JavaHelpers extends AnyRef

Provides helper methods that manage Java to Scala Result and Scala to Java Context creation

Source
JavaHelpers.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaHelpers
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def cookiesToJavaCookies(cookies: Cookies): Cookies
  2. def cookiesToScalaCookies(cookies: Iterable[Cookie]): Seq[Cookie]
  3. def javaMapOfArraysToScalaSeqOfPairs(m: Map[String, Array[String]]): Seq[(String, String)]
  4. def javaMapOfListToScalaSeqOfPairs(m: Map[String, List[String]]): Seq[(String, String)]
  5. def javaMapToImmutableScalaMap[A, B](m: Map[A, B]): Map[A, B]
  6. def mergeNewCookie(cookies: Cookies, newCookie: Cookie): Cookies
  7. def scalaMapOfSeqsToJavaMapOfArrays(m: Map[String, Seq[String]]): Map[String, Array[String]]
  8. def updateRequestWithUri[A](req: Request[A], parsedUri: URI): Request[A]

Deprecated Value Members

  1. def createContextComponents(messagesApi: MessagesApi, langs: Langs, fileMimeTypes: FileMimeTypes, httpConfiguration: HttpConfiguration): JavaContextComponents

    Creates JavaContextComponents directly from components..

    Creates JavaContextComponents directly from components..

    messagesApi

    the messagesApi instance

    langs

    the langs instance

    fileMimeTypes

    the file mime types

    httpConfiguration

    the http configuration

    returns

    an instance of JavaContextComponents with given input components.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Inject MessagesApi, Langs, FileMimeTypes or HttpConfiguration instead

  2. def createContextComponents(configuration: Configuration, env: api.Environment): JavaContextComponents

    Creates context components from environment.

    Creates context components from environment.

    configuration

    play config.

    env

    play environment.

    returns

    an instance of JavaContextComponents with default messagesApi and langs.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Inject MessagesApi, Langs, FileMimeTypes or HttpConfiguration instead

  3. def createContextComponents(): JavaContextComponents

    Creates java context components from environment, using play.api.Configuration.reference and play.api.Environment.simple as defaults.

    Creates java context components from environment, using play.api.Configuration.reference and play.api.Environment.simple as defaults.

    returns

    an instance of JavaContextComponents.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Inject MessagesApi, Langs, FileMimeTypes or HttpConfiguration instead