Uses of Enum Class
jakarta.ws.rs.core.Response.Status
Package
Description
High-level interfaces and annotations used to create RESTful service resources.
Low-level interfaces and annotations used to create RESTful service resources.
-
Uses of Response.Status in jakarta.ws.rs
ModifierConstructorDescriptionClientErrorException
(Response.Status status) Construct a new client error exception.ClientErrorException
(Response.Status status, Throwable cause) Construct a new client error exception.ClientErrorException
(String message, Response.Status status) Construct a new client error exception.ClientErrorException
(String message, Response.Status status, Throwable cause) Construct a new client error exception.RedirectionException
(Response.Status status, URI location) Construct a new redirection exception.RedirectionException
(String message, Response.Status status, URI location) Construct a new redirection exception.ServerErrorException
(Response.Status status) Construct a new server error exception.ServerErrorException
(Response.Status status, Throwable cause) Construct a new server error exception.ServerErrorException
(String message, Response.Status status) Construct a new server error exception.ServerErrorException
(String message, Response.Status status, Throwable cause) Construct a new server error exception.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
(String message, Response.Status status) Construct a new instance with the supplied message and HTTP status.WebApplicationException
(String message, Throwable cause, Response.Status status) Construct a new instance with a the supplied message, root cause and HTTP status code.WebApplicationException
(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. -
Uses of Response.Status in jakarta.ws.rs.core
Modifier and TypeMethodDescriptionstatic Response.Status
Response.Status.fromStatusCode
(int statusCode) Convert a numerical status code into the corresponding Status.default Response.Status
Response.StatusType.toEnum()
Get the this Status Type as aResponse.Status
.static Response.Status
Returns the enum constant of this class with the specified name.static Response.Status[]
Response.Status.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionResponse.ResponseBuilder.status
(Response.Status status) Set the status on the ResponseBuilder.static Response.ResponseBuilder
Response.status
(Response.Status status) Create a new ResponseBuilder with the supplied status.