play.api.mvc

Results

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 SimpleResult

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

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val Accepted: Status

    Generates a ‘202 ACCEPTED’ result.

  7. val BadGateway: Status

    Generates a ‘502 BAD_GATEWAY’ result.

  8. val BadRequest: Status

    Generates a ‘400 BAD_REQUEST’ result.

  9. val Conflict: Status

    Generates a ‘409 CONFLICT’ result.

  10. val Created: Status

    Generates a ‘201 CREATED’ result.

  11. val EntityTooLarge: Status

    Generates a ‘413 REQUEST_ENTITY_TOO_LARGE’ result.

  12. val ExpectationFailed: Status

    Generates a ‘417 EXPECTATION_FAILED’ result.

  13. val FailedDependency: Status

    Generates a ‘424 FAILED_DEPENDENCY’ result.

  14. val Forbidden: Status

    Generates a ‘403 FORBIDDEN’ result.

  15. def Found(url: String): SimpleResult

    Generates a ‘302 FOUND’ simple result.

    Generates a ‘302 FOUND’ simple result.

    url

    the URL to redirect to

  16. val GatewayTimeout: Status

    Generates a ‘504 GATEWAY_TIMEOUT’ result.

  17. val Gone: Status

    Generates a ‘410 GONE’ result.

  18. val HttpVersionNotSupported: Status

    Generates a ‘505 HTTP_VERSION_NOT_SUPPORTED’ result.

  19. val InsufficientStorage: Status

    Generates a ‘507 INSUFFICIENT_STORAGE’ result.

  20. val InternalServerError: Status

    Generates a ‘500 INTERNAL_SERVER_ERROR’ result.

  21. val Locked: Status

    Generates a ‘423 LOCKED’ result.

  22. val MethodNotAllowed: Status

    Generates a ‘405 METHOD_NOT_ALLOWED’ result.

  23. def MovedPermanently(url: String): SimpleResult

    Generates a ‘301 MOVED_PERMANENTLY’ simple result.

    Generates a ‘301 MOVED_PERMANENTLY’ simple result.

    url

    the URL to redirect to

  24. val MultiStatus: Status

    Generates a ‘207 MULTI_STATUS’ result.

  25. val NoContent: SimpleResult

    Generates a ‘204 NO_CONTENT’ result.

  26. val NonAuthoritativeInformation: Status

    Generates a ‘203 NON_AUTHORITATIVE_INFORMATION’ result.

  27. val NotAcceptable: Status

    Generates a ‘406 NOT_ACCEPTABLE’ result.

  28. val NotFound: Status

    Generates a ‘404 NOT_FOUND’ result.

  29. val NotImplemented: Status

    Generates a ‘501 NOT_IMPLEMENTED’ result.

  30. val NotModified: SimpleResult

    Generates a ‘304 NOT_MODIFIED’ result.

  31. val Ok: Status

    Generates a ‘200 OK’ result.

  32. val PartialContent: Status

    Generates a ‘206 PARTIAL_CONTENT’ result.

  33. val PreconditionFailed: Status

    Generates a ‘412 PRECONDITION_FAILED’ result.

  34. def Redirect(call: Call): SimpleResult

    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): SimpleResult

    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

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

    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: SimpleResult

    Generates a ‘205 RESET_CONTENT’ result.

  39. def SeeOther(url: String): SimpleResult

    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): SimpleResult

    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.

    Chunks may span multiple elements in the stream.

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  63. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def Async(promise: Future[Result]): AsyncResult

    Annotations
    @deprecated
    Deprecated

    (Since version 2.2.0) Use Action.async to build async actions instead

Inherited from AnyRef

Inherited from Any

Ungrouped