play.api.mvc

Results

Related Docs: object Results | package mvc

trait Results extends AnyRef

Helper utilities to generate results.

Source
Results.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Results
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Status extends Result

    Generates default Result from a content type, headers and content.

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. val Accepted: Status

    Generates a ‘202 ACCEPTED’ result.

  5. val BadGateway: Status

    Generates a ‘502 BAD_GATEWAY’ result.

  6. val BadRequest: Status

    Generates a ‘400 BAD_REQUEST’ result.

  7. val Conflict: Status

    Generates a ‘409 CONFLICT’ result.

  8. val Created: Status

    Generates a ‘201 CREATED’ result.

  9. val EntityTooLarge: Status

    Generates a ‘413 REQUEST_ENTITY_TOO_LARGE’ result.

  10. val ExpectationFailed: Status

    Generates a ‘417 EXPECTATION_FAILED’ result.

  11. val FailedDependency: Status

    Generates a ‘424 FAILED_DEPENDENCY’ result.

  12. val Forbidden: Status

    Generates a ‘403 FORBIDDEN’ result.

  13. def Found(url: String): Result

    Generates a ‘302 FOUND’ simple result.

    Generates a ‘302 FOUND’ simple result.

    url

    the URL to redirect to

  14. val GatewayTimeout: Status

    Generates a ‘504 GATEWAY_TIMEOUT’ result.

  15. val Gone: Status

    Generates a ‘410 GONE’ result.

  16. val HttpVersionNotSupported: Status

    Generates a ‘505 HTTP_VERSION_NOT_SUPPORTED’ result.

  17. val InsufficientStorage: Status

    Generates a ‘507 INSUFFICIENT_STORAGE’ result.

  18. val InternalServerError: Status

    Generates a ‘500 INTERNAL_SERVER_ERROR’ result.

  19. val Locked: Status

    Generates a ‘423 LOCKED’ result.

  20. val MethodNotAllowed: Status

    Generates a ‘405 METHOD_NOT_ALLOWED’ result.

  21. def MovedPermanently(url: String): Result

    Generates a ‘301 MOVED_PERMANENTLY’ simple result.

    Generates a ‘301 MOVED_PERMANENTLY’ simple result.

    url

    the URL to redirect to

  22. val MultiStatus: Status

    Generates a ‘207 MULTI_STATUS’ result.

  23. val NoContent: Result

    Generates a ‘204 NO_CONTENT’ result.

  24. val NonAuthoritativeInformation: Status

    Generates a ‘203 NON_AUTHORITATIVE_INFORMATION’ result.

  25. val NotAcceptable: Status

    Generates a ‘406 NOT_ACCEPTABLE’ result.

  26. val NotFound: Status

    Generates a ‘404 NOT_FOUND’ result.

  27. val NotImplemented: Status

    Generates a ‘501 NOT_IMPLEMENTED’ result.

  28. val NotModified: Result

    Generates a ‘304 NOT_MODIFIED’ result.

  29. val Ok: Status

    Generates a ‘200 OK’ result.

  30. val PartialContent: Status

    Generates a ‘206 PARTIAL_CONTENT’ result.

  31. val PaymentRequired: Status

    Generates a ‘402 PAYMENT_REQUIRED’ result.

  32. val PreconditionFailed: Status

    Generates a ‘412 PRECONDITION_FAILED’ result.

  33. def Redirect(call: Call, status: Int): Result

    Generates a redirect simple result.

    Generates a redirect simple result.

    call

    Call defining the URL to redirect to, which typically comes from the reverse router

    status

    HTTP status for redirect, such as SEE_OTHER, MOVED_TEMPORARILY or MOVED_PERMANENTLY

  34. def Redirect(call: Call): Result

    Generates a redirect simple result.

    Generates a redirect simple result.

    call

    Call defining the URL to redirect to, which typically comes from the reverse router

  35. def Redirect(url: String, queryString: Map[String, Seq[String]] = Map.empty, status: Int = SEE_OTHER): Result

    Generates a redirect simple result.

    Generates a redirect simple result.

    url

    the URL to redirect to

    queryString

    queryString parameters to add to the queryString

    status

    HTTP status for redirect, such as SEE_OTHER, MOVED_TEMPORARILY or MOVED_PERMANENTLY

  36. def Redirect(url: String, status: Int): Result

    Generates a redirect simple result.

    Generates a redirect simple result.

    url

    the URL to redirect to

    status

    HTTP status

  37. val RequestTimeout: Status

    Generates a ‘408 REQUEST_TIMEOUT’ result.

  38. val ResetContent: Result

    Generates a ‘205 RESET_CONTENT’ result.

  39. def SeeOther(url: String): Result

    Generates a ‘303 SEE_OTHER’ simple result.

    Generates a ‘303 SEE_OTHER’ simple result.

    url

    the URL to redirect to

  40. val ServiceUnavailable: Status

    Generates a ‘503 SERVICE_UNAVAILABLE’ result.

  41. def Status(code: Int): Status

    Generates a simple result.

    Generates a simple result.

    code

    the status code

  42. def TemporaryRedirect(url: String): Result

    Generates a ‘307 TEMPORARY_REDIRECT’ simple result.

    Generates a ‘307 TEMPORARY_REDIRECT’ simple result.

    url

    the URL to redirect to

  43. val TooManyRequest: Status

    Generates a ‘429 TOO_MANY_REQUEST’ result.

  44. val Unauthorized: Status

    Generates a ‘401 UNAUTHORIZED’ result.

  45. val UnprocessableEntity: Status

    Generates a ‘422 UNPROCESSABLE_ENTITY’ result.

  46. val UnsupportedMediaType: Status

    Generates a ‘415 UNSUPPORTED_MEDIA_TYPE’ result.

  47. val UriTooLong: Status

    Generates a ‘414 REQUEST_URI_TOO_LONG’ result.

  48. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  49. def chunk(trailers: Option[Iteratee[Array[Byte], Seq[(String, String)]]] = None): Enumeratee[Array[Byte], Array[Byte]]

    Implements HTTP chunked transfer encoding.

    Implements HTTP chunked transfer encoding.

    trailers

    An optional trailers iteratee. If supplied, this will be zipped with the output iteratee, so that it can calculate some trailing headers, which will be included with the last chunk.

  50. def chunk: Enumeratee[Array[Byte], Array[Byte]]

    Implements HTTP chunked transfer encoding.

  51. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. def dechunk: Enumeratee[Array[Byte], Array[Byte]]

    Dechunks a chunked transfer encoding stream.

    Dechunks a chunked transfer encoding stream.

    Chunk content may span multiple elements in the stream.

  53. def dechunkWithTrailers: Enumeratee[Array[Byte], Either[Array[Byte], Seq[(String, String)]]]

    Dechunks a chunked transfer encoding stream, returning any trailers in the last element.

    Dechunks a chunked transfer encoding stream, returning any trailers in the last element. Chunks are Left(bytes) and the trailer is Right(trailers).

    Chunk and trailer content may span multiple elements in the stream.

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

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

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

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

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

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

    Definition Classes
    Any
  60. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  61. final def notify(): Unit

    Definition Classes
    AnyRef
  62. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  63. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  64. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped