Uses of Class
javax.ws.rs.core.Response

Packages that use Response
com.restfully.shop.services   
com.sun.jersey.api Provides support for responses and exceptions. 
com.sun.jersey.api.core Provides support for configuration. 
com.sun.jersey.core.spi.factory Provides support for factories of particular component types. 
com.sun.jersey.oauth.server   
com.sun.jersey.oauth.server.api.resources   
com.sun.jersey.server.impl.ejb   
com.sun.jersey.server.impl.wadl   
com.sun.jersey.spi.container Provides support for containers and the web application that manages resource classes. 
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. 
javax.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API. 
 

Uses of Response in com.restfully.shop.services
 

Methods in com.restfully.shop.services that return Response
 Response CustomerResourceBean.createCustomer(Customer customer, UriInfo uriInfo)
           
 Response FirstLastCustomerResource.createCustomer(InputStream is)
           
 Response CustomerResource.createCustomer(InputStream is)
           
 Response OrderResourceBean.createOrder(Order order, UriInfo uriInfo)
           
 Response OrderResource.createOrder(Order order, UriInfo uriInfo)
           
 Response ProductResource.createProduct(Product customer, UriInfo uriInfo)
           
 Response ProductResourceBean.createProduct(Product product, UriInfo uriInfo)
           
 Response OrderResourceBean.getOrder(int id, UriInfo uriInfo)
           
 Response OrderResource.getOrder(int id, UriInfo uriInfo)
           
 Response OrderResourceBean.getOrderHeaders(int id, UriInfo uriInfo)
           
 Response OrderResource.getOrderHeaders(int id, UriInfo uriInfo)
           
 Response OrderResourceBean.getOrders(int start, int size, UriInfo uriInfo)
           
 Response OrderResource.getOrders(int start, int size, UriInfo uriInfo)
           
 Response OrderResource.getOrdersHeaders(int start, int size, UriInfo uriInfo)
           
 Response OrderResourceBean.getOrdersHeaders(UriInfo uriInfo)
           
 Response StoreResourceBean.head(UriInfo uriInfo)
           
 Response StoreResource.head(UriInfo uriInfo)
           
 Response EntityNotFoundExceptionMapper.toResponse(javax.persistence.EntityNotFoundException exception)
           
 Response NotFoundExceptionMapper.toResponse(NotFoundException exception)
           
 

Uses of Response in com.sun.jersey.api
 

Subclasses of Response in com.sun.jersey.api
 class JResponseAsResponse
          An adaption of JResponse as a Response.
 

Methods in com.sun.jersey.api with parameters of type Response
static
<E> JResponse.JResponseBuilder<E>
JResponse.fromResponse(Response response)
          Create a new JResponse.JResponseBuilder by performing a shallow copy of an existing Response.
 

Uses of Response in com.sun.jersey.api.core
 

Methods in com.sun.jersey.api.core that return Response
 Response HttpResponseContext.getResponse()
          Get the response that was set.
 

Methods in com.sun.jersey.api.core with parameters of type Response
 void HttpResponseContext.setResponse(Response response)
          Set the response state from a Response instance.
 

Uses of Response in com.sun.jersey.core.spi.factory
 

Subclasses of Response in com.sun.jersey.core.spi.factory
 class ResponseImpl
          An implementation of Response.
 

Methods in com.sun.jersey.core.spi.factory that return Response
 Response ResponseBuilderImpl.build()
           
 

Uses of Response in com.sun.jersey.oauth.server
 

Methods in com.sun.jersey.oauth.server that return Response
 Response OAuthException.toResponse()
          Maps this exception to a response object.
 

Uses of Response in com.sun.jersey.oauth.server.api.resources
 

Methods in com.sun.jersey.oauth.server.api.resources that return Response
 Response AccessTokenRequest.postAccessTokenRequest(HttpContext hc, Request req)
          POST method for creating a request for Rquest Token
 Response RequestTokenRequest.postReqTokenRequest()
          POST method for creating a request for a Request Token
 

Uses of Response in com.sun.jersey.server.impl.ejb
 

Methods in com.sun.jersey.server.impl.ejb that return Response
 Response EJBExceptionMapper.toResponse(javax.ejb.EJBException exception)
           
 

Uses of Response in com.sun.jersey.server.impl.wadl
 

Methods in com.sun.jersey.server.impl.wadl that return Response
 Response WadlResource.getWadl(UriInfo uriInfo)
           
 

Uses of Response in com.sun.jersey.spi.container
 

Methods in com.sun.jersey.spi.container that return Response
 Response ContainerResponse.getResponse()
           
 Response AdaptingContainerResponse.getResponse()
           
 

Methods in com.sun.jersey.spi.container with parameters of type Response
 void ContainerResponse.setResponse(Response response)
           
 void AdaptingContainerResponse.setResponse(Response response)
           
 

Uses of Response in javax.ws.rs
 

Methods in javax.ws.rs that return Response
 Response WebApplicationException.getResponse()
          Get the HTTP response.
 

Constructors in javax.ws.rs with parameters of type Response
WebApplicationException(Response response)
          Construct a new instance using the supplied response
WebApplicationException(Throwable cause, Response response)
          Construct a new instance using the supplied response
 

Uses of Response in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return Response
abstract  Response Response.ResponseBuilder.build()
          Create a Response instance from the current ResponseBuilder.
 

Methods in javax.ws.rs.core with parameters of type Response
static Response.ResponseBuilder Response.fromResponse(Response response)
          Create a new ResponseBuilder by performing a shallow copy of an existing Response.
 

Uses of Response in javax.ws.rs.ext
 

Methods in javax.ws.rs.ext that return Response
 Response ExceptionMapper.toResponse(E exception)
          Map an exception to a Response.
 



Copyright © 2013 Oracle Corporation. All Rights Reserved.