the response header, which contains status code and HTTP headers
the response body
the connection semantics to use
Example:
Example:
Ok.addingToSession("foo" -> "bar").addingToSession("baz" -> "bah")
(key -> value) pairs to add to this result’s session
Current request
A copy of this result with values
added to its session scope.
Changes the result content type.
Changes the result content type.
For example:
Ok("Hello world ").as("application/xml")
the new content type.
the new result
the response body
Clears the user's language by discarding the language cookie set by withLang
Clears the user's language by discarding the language cookie set by withLang
For example:
Ok(Messages("hello.world")).clearingLang
the new result
the connection semantics to use
Discards cookies along this result.
Discards cookies along this result.
For example:
Redirect(routes.Application.index()).discardingCookies("theme")
the cookies to discard along to this result
the new result
Adds values to the flash scope for this result.
Adds values to the flash scope for this result.
For example:
Redirect(routes.Application.index()).flashing("success" -> "Done!")
the flash values to set with this result
the new result
Adds values to the flash scope for this result.
Adds values to the flash scope for this result.
For example:
Redirect(routes.Application.index()).flashing(flash + ("success" -> "Done!"))
the flash scope to set with this result
the new result
the response header, which contains status code and HTTP headers
Example:
Example:
Ok.removingFromSession("foo")
Keys to remove from session
Current request
A copy of this result with keys
removed from its session scope.
Current request
The session carried by this result. Reads the request’s session if this result does not modify the session.
Adds cookies to this result.
Adds cookies to this result.
For example:
Redirect(routes.Application.index()).withCookies(Cookie("theme", "blue"))
the cookies to add to this result
the new result
Adds headers to this result.
Adds headers to this result.
For example:
Ok("Hello world").withHeaders(ETAG -> "0")
the headers to add to this result.
the new result
Sets the user's language permanently for future requests by storing it in a cookie.
Sets the user's language permanently for future requests by storing it in a cookie.
For example:
implicit val lang = Lang("fr-FR") Ok(Messages("hello.world")).withLang(lang)
the language to store for the user
the new result
Discards the existing session for this result.
Discards the existing session for this result.
For example:
Redirect(routes.Application.index()).withNewSession
the new result
Sets a new session for this result, discarding the existing session.
Sets a new session for this result, discarding the existing session.
For example:
Redirect(routes.Application.index()).withSession("saidHello" -> "yes")
the session to set with this result
the new result
Sets a new session for this result.
Sets a new session for this result.
For example:
Redirect(routes.Application.index()).withSession(session + ("saidHello" -> "true"))
the session to set with this result
the new result
A simple result, which defines the response header and a body ready to send to the client.
the response header, which contains status code and HTTP headers
the response body
the connection semantics to use