Uses of Interface
javax.ws.rs.core.Response.StatusType

Packages that use Response.StatusType
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.container Container-specific JAX-RS API. 
javax.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 javax.ws.rs.client
 

Methods in javax.ws.rs.client that return Response.StatusType
 Response.StatusType ClientResponseContext.getStatusInfo()
          Get the complete status information associated with the response.
 

Methods in javax.ws.rs.client with parameters of type Response.StatusType
 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 javax.ws.rs.container
 

Methods in javax.ws.rs.container that return Response.StatusType
 Response.StatusType ContainerResponseContext.getStatusInfo()
          Get the complete status information associated with the response.
 

Methods in javax.ws.rs.container with parameters of type Response.StatusType
 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 javax.ws.rs.core
 

Classes in javax.ws.rs.core that implement Response.StatusType
static class Response.Status
          Commonly used status codes defined by HTTP, see HTTP/1.1 documentation for the complete list.
 

Methods in javax.ws.rs.core that return Response.StatusType
abstract  Response.StatusType Response.getStatusInfo()
          Get the complete status information associated with the response.
 

Methods in javax.ws.rs.core with parameters of type Response.StatusType
static Response.ResponseBuilder Response.status(Response.StatusType status)
          Create a new ResponseBuilder with the supplied status.
 Response.ResponseBuilder Response.ResponseBuilder.status(Response.StatusType status)
          Set the status on the ResponseBuilder.
 

Uses of Response.StatusType in org.glassfish.jersey.client
 

Methods in org.glassfish.jersey.client that return Response.StatusType
 Response.StatusType ClientResponse.getStatusInfo()
           
 

Methods in org.glassfish.jersey.client with parameters of type Response.StatusType
 void ClientResponse.setStatusInfo(Response.StatusType status)
           
 

Constructors in org.glassfish.jersey.client with parameters of type Response.StatusType
ClientResponse(Response.StatusType status, ClientRequest requestContext)
          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
static Response.StatusType Statuses.from(int code)
           
static Response.StatusType Statuses.from(int code, String reason)
           
static Response.StatusType Statuses.from(Response.StatusType status, String reason)
           
 Response.StatusType OutboundJaxrsResponse.getStatusInfo()
           
 

Methods in org.glassfish.jersey.message.internal with parameters of type Response.StatusType
static Response.StatusType Statuses.from(Response.StatusType status, String reason)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.status(Response.StatusType status)
           
 

Constructors in org.glassfish.jersey.message.internal with parameters of type Response.StatusType
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
 Response.StatusType ContainerResponse.getStatusInfo()
           
 

Methods in org.glassfish.jersey.server with parameters of type Response.StatusType
 void ContainerResponse.setStatusInfo(Response.StatusType status)
           
 

Constructors in org.glassfish.jersey.server with parameters of type Response.StatusType
ParamException(Throwable cause, Response.StatusType status, Class<? extends Annotation> parameterType, String name, String defaultStringValue)
           
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.