static HttpStatus |
HttpStatus.accepted() |
Creates an instance with status code 202 Accepted .
|
static HttpStatus |
HttpStatus.badRequest() |
Creates an instance with status code 400 Bad Request .
|
static HttpStatus |
HttpStatus.created() |
Creates an instance with status code 201 Created .
|
static HttpStatus |
HttpStatus.forbidden() |
Creates an instance with status code 403 Forbidden .
|
static HttpStatus |
HttpStatus.movedPermanently(java.lang.String location) |
Creates an instance with status code 301 Moved Permanently .
|
static HttpStatus |
HttpStatus.movedPermanently(Link link) |
Creates an instance with status code 301 Moved Permanently .
|
static HttpStatus |
HttpStatus.notFound() |
Creates an instance with status code 404 Not Found .
|
static HttpStatus |
HttpStatus.ok() |
Creates an instance with status code 200 OK .
|
static HttpStatus |
HttpStatus.seeOther(java.lang.String location) |
Creates an instance with status code 303 See Other .
|
static HttpStatus |
HttpStatus.seeOther(Link location) |
Creates an instance with status code 303 See Also .
|
static HttpStatus |
HttpStatus.temporaryRedirect(java.lang.String location) |
Creates an instance with status code 302 Found .
|
static HttpStatus |
HttpStatus.temporaryRedirect(Link location) |
Creates an instance with status code 302 Found .
|
static HttpStatus |
HttpStatus.unauthorized() |
Creates an instance with status code 401 Unauthorized .
|
HttpStatus |
HttpStatus.withContentLocation(java.lang.String location) |
Sets the Content-Location HTTP header.
|
HttpStatus |
HttpStatus.withContentLocation(Link link) |
Sets the Content-Location HTTP header.
|
HttpStatus |
HttpStatus.withHttpHeader(java.lang.String name,
java.lang.String value) |
Sets an HTTP header.
|
HttpStatus |
HttpStatus.withLocation(java.lang.String location) |
Sets a redirect by using the Location HTTP header.
|
HttpStatus |
HttpStatus.withLocation(Link location) |
Sets a redirect by using the Location HTTP header.
|