Package | Description |
---|---|
javax.ws.rs |
High-level interfaces and annotations used to create RESTful service
resources.
|
javax.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service
resources.
|
Modifier and Type | Method and Description |
---|---|
(package private) static Response |
WebApplicationException.validate(Response response,
Response.Status expectedStatus)
Validate that a
Response object has an expected HTTP response
status code set. |
Constructor and Description |
---|
ClientErrorException(Response.Status status)
Construct a new client error exception.
|
ClientErrorException(Response.Status status,
java.lang.Throwable cause)
Construct a new client error exception.
|
ClientErrorException(java.lang.String message,
Response.Status status)
Construct a new client error exception.
|
ClientErrorException(java.lang.String message,
Response.Status status,
java.lang.Throwable cause)
Construct a new client error exception.
|
RedirectionException(Response.Status status,
java.net.URI location)
Construct a new redirection exception.
|
RedirectionException(java.lang.String message,
Response.Status status,
java.net.URI location)
Construct a new redirection exception.
|
ServerErrorException(Response.Status status)
Construct a new server error exception.
|
ServerErrorException(Response.Status status,
java.lang.Throwable cause)
Construct a new server error exception.
|
ServerErrorException(java.lang.String message,
Response.Status status)
Construct a new server error exception.
|
ServerErrorException(java.lang.String message,
Response.Status status,
java.lang.Throwable cause)
Construct a new server error exception.
|
WebApplicationException(Response.Status status)
Construct a new instance with the supplied HTTP status
and a default message generated from the HTTP status code and the associated HTTP status reason phrase.
|
WebApplicationException(java.lang.String message,
Response.Status status)
Construct a new instance with the supplied message and HTTP status.
|
WebApplicationException(java.lang.String message,
java.lang.Throwable cause,
Response.Status status)
Construct a new instance with a the supplied message, root cause and HTTP status code.
|
WebApplicationException(java.lang.Throwable cause,
Response.Status status)
Construct a new instance with the supplied root cause, HTTP status code
and a default message generated from the HTTP status code and the associated HTTP status reason phrase.
|
Modifier and Type | Method and Description |
---|---|
static Response.Status |
Response.Status.fromStatusCode(int statusCode)
Convert a numerical status code into the corresponding Status.
|
static Response.Status |
Response.Status.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Response.Status[] |
Response.Status.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Response.ResponseBuilder |
Response.status(Response.Status status)
Create a new ResponseBuilder with the supplied status.
|
Response.ResponseBuilder |
Response.ResponseBuilder.status(Response.Status status)
Set the status on the ResponseBuilder.
|