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.org.glassfish.jersey.client Jersey client-side classes.org.glassfish.jersey.message.internal Common Jersey internal messaging classes.org.glassfish.jersey.server Jersey server-side classes. -
-
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.StatusTypeClientResponseContext. 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 voidClientResponseContext. 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.StatusTypeContainerResponseContext. 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 voidContainerResponseContext. 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 classResponse.StatusCommonly 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.StatusTypeResponse. 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.ResponseBuilderResponse.ResponseBuilder. status(Response.StatusType status)Set the status on the ResponseBuilder.static Response.ResponseBuilderResponse. status(Response.StatusType status)Create a new ResponseBuilder with the supplied status. -
Uses of Response.StatusType in org.glassfish.jersey.client
Methods in org.glassfish.jersey.client that return Response.StatusType Modifier and Type Method Description Response.StatusTypeClientResponse. getStatusInfo()Methods in org.glassfish.jersey.client with parameters of type Response.StatusType Modifier and Type Method Description voidClientResponse. setStatusInfo(Response.StatusType status)Constructors in org.glassfish.jersey.client with parameters of type Response.StatusType Constructor Description ClientResponse(Response.StatusType status, ClientRequest requestContext)Create a new Jersey client response context.ClientResponse(Response.StatusType status, ClientRequest requestContext, URI resolvedRequestUri)Create a new Jersey client response context. -
Uses of Response.StatusType in org.glassfish.jersey.message.internal
Methods in org.glassfish.jersey.message.internal that return Response.StatusType Modifier and Type Method Description static Response.StatusTypeStatuses. from(int code)Create a new status type instance.static Response.StatusTypeStatuses. from(int code, String reason)Create a new status type instance with a custom reason phrase.static Response.StatusTypeStatuses. from(Response.StatusType status, String reason)Create a new status type instance with a custom reason phrase.Response.StatusTypeOutboundJaxrsResponse. getStatusInfo()Methods in org.glassfish.jersey.message.internal with parameters of type Response.StatusType Modifier and Type Method Description static Response.StatusTypeStatuses. from(Response.StatusType status, String reason)Create a new status type instance with a custom reason phrase.Response.ResponseBuilderOutboundJaxrsResponse.Builder. status(Response.StatusType status)Constructors in org.glassfish.jersey.message.internal with parameters of type Response.StatusType Constructor Description OutboundJaxrsResponse(Response.StatusType status, OutboundMessageContext context)Create new outbound JAX-RS response message instance. -
Uses of Response.StatusType in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server that return Response.StatusType Modifier and Type Method Description Response.StatusTypeContainerResponse. getStatusInfo()Methods in org.glassfish.jersey.server with parameters of type Response.StatusType Modifier and Type Method Description voidContainerResponse. setStatusInfo(Response.StatusType status)Constructors in org.glassfish.jersey.server with parameters of type Response.StatusType Constructor Description ParamException(Throwable cause, Response.StatusType status, Class<? extends Annotation> parameterType, String name, String defaultStringValue)
-