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

Packages that use Response
javax.ws.rs High-level interfaces and annotations used to create RESTful service resources. 
javax.ws.rs.client The JAX-RS client API 
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 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(java.lang.Throwable cause, Response response)
          Construct a new instance using the supplied response.
 

Uses of Response in javax.ws.rs.client
 

Methods in javax.ws.rs.client that return Response
 Response SyncInvoker.delete()
           
 Response SyncInvoker.get()
           
 Response InvocationException.getResponse()
          Get the client response associated with the exception.
 Response SyncInvoker.head()
           
 Response Invocation.invoke()
          Synchronously invoke the request and receive a response back.
 Response SyncInvoker.method(java.lang.String name)
           
 Response SyncInvoker.method(java.lang.String name, Entity<?> entity)
           
 Response SyncInvoker.options()
           
 Response SyncInvoker.post(Entity<?> entity)
           
 Response SyncInvoker.put(Entity<?> entity)
           
 Response SyncInvoker.trace(Entity<?> entity)
           
 

Methods in javax.ws.rs.client that return types with arguments of type Response
 java.util.concurrent.Future<Response> AsyncInvoker.delete()
           
 java.util.concurrent.Future<Response> AsyncInvoker.get()
           
 java.util.concurrent.Future<Response> AsyncInvoker.head()
           
 java.util.concurrent.Future<Response> AsyncInvoker.head(InvocationCallback<Response> callback)
           
 java.util.concurrent.Future<Response> AsyncInvoker.method(java.lang.String name)
           
 java.util.concurrent.Future<Response> AsyncInvoker.method(java.lang.String name, Entity<?> entity)
           
 java.util.concurrent.Future<Response> AsyncInvoker.options()
           
 java.util.concurrent.Future<Response> AsyncInvoker.post(Entity<?> entity)
           
 java.util.concurrent.Future<Response> AsyncInvoker.put(Entity<?> entity)
           
 java.util.concurrent.Future<Response> Invocation.submit()
          Submit the request for an asynchronous invocation and receive a future response back.
 java.util.concurrent.Future<Response> AsyncInvoker.trace(Entity<?> entity)
           
 

Method parameters in javax.ws.rs.client with type arguments of type Response
 java.util.concurrent.Future<Response> AsyncInvoker.head(InvocationCallback<Response> callback)
           
 

Constructors in javax.ws.rs.client with parameters of type Response
InvocationException(Response response)
          Construct a client-side invocation exception and set the exception's response reference to point to the provided response input parameter.
InvocationException(Response response, boolean bufferResponseEntity)
          Construct a client-side invocation exception and set the exception's response reference to point to the provided response input parameter.
InvocationException(java.lang.String message, Response response)
          Construct a client-side invocation exception and set the exception's response reference to point to the provided response input parameter.
InvocationException(java.lang.String message, Response response, boolean bufferResponseEntity)
          Construct a client-side invocation exception and set the exception's response reference to point to the provided response input parameter.
 

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.
 Response ExecutionContext.getResponse()
          Returns default response to be send back to the client in case the suspended request times out.
 

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 FilterContext.getResponse()
          Get the response object.
 Response ExceptionMapper.toResponse(E exception)
          Map an exception to a Response.
 

Methods in javax.ws.rs.ext with parameters of type Response
 void FilterContext.setResponse(Response res)
          Set the response object in the context.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.