Uses of Interface
jakarta.ws.rs.core.Response.StatusType
-
Packages that use Response.StatusType Package Description jakarta.ws.rs.client The JAX-RS client APIjakarta.ws.rs.container Container-specific JAX-RS API.jakarta.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. -
-
Uses of Response.StatusType in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return Response.StatusType Modifier and Type Method Description Response.StatusType
ClientResponseContext. getStatusInfo()
Get the complete status information associated with the response.Methods in jakarta.ws.rs.client with parameters of type Response.StatusType Modifier and Type Method Description void
ClientResponseContext. setStatusInfo(Response.StatusType statusInfo)
Set the complete status information (status code and reason phrase) associated with the response. -
Uses of Response.StatusType in jakarta.ws.rs.container
Methods in jakarta.ws.rs.container that return Response.StatusType Modifier and Type Method Description Response.StatusType
ContainerResponseContext. getStatusInfo()
Get the complete status information associated with the response.Methods in jakarta.ws.rs.container with parameters of type Response.StatusType Modifier and Type Method Description void
ContainerResponseContext. setStatusInfo(Response.StatusType statusInfo)
Set the complete status information (status code and reason phrase) associated with the response. -
Uses of Response.StatusType in jakarta.ws.rs.core
Classes in jakarta.ws.rs.core that implement Response.StatusType Modifier and Type Class Description static class
Response.Status
Commonly used status codes defined by HTTP, see HTTP/1.1 documentation for the complete list.Methods in jakarta.ws.rs.core that return Response.StatusType Modifier and Type Method Description abstract Response.StatusType
Response. getStatusInfo()
Get the complete status information associated with the response.Methods in jakarta.ws.rs.core with parameters of type Response.StatusType Modifier and Type Method Description Response.ResponseBuilder
Response.ResponseBuilder. status(Response.StatusType status)
Set the status on the ResponseBuilder.static Response.ResponseBuilder
Response. status(Response.StatusType status)
Create a new ResponseBuilder with the supplied status.
-