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.container Container-specific JAX-RS 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. 
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. 
org.glassfish.jersey.server.internal.process   
org.glassfish.jersey.server.model.internal   
org.glassfish.jersey.server.spi.internal Jersey server-side internal service provider contract (SPI) classes. 
org.glassfish.jersey.server.wadl.internal   
org.glassfish.jersey.server.wadl.processor   
 

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
BadRequestException(Response response)
          Construct a new bad client request exception.
BadRequestException(Response response, Throwable cause)
          Construct a new bad client request exception.
BadRequestException(String message, Response response)
          Construct a new bad client request exception.
BadRequestException(String message, Response response, Throwable cause)
          Construct a new bad client request exception.
ClientErrorException(Response response)
          Construct a new client error exception.
ClientErrorException(Response response, Throwable cause)
          Construct a new client error exception.
ClientErrorException(String message, Response response)
          Construct a new client error exception.
ClientErrorException(String message, Response response, Throwable cause)
          Construct a new client error exception.
ForbiddenException(Response response)
          Construct a new "forbidden" exception.
ForbiddenException(Response response, Throwable cause)
          Construct a new "forbidden" exception.
ForbiddenException(String message, Response response)
          Construct a new "forbidden" exception.
ForbiddenException(String message, Response response, Throwable cause)
          Construct a new "forbidden" exception.
InternalServerErrorException(Response response)
          Construct a new internal server error exception.
InternalServerErrorException(Response response, Throwable cause)
          Construct a new internal server error exception.
InternalServerErrorException(String message, Response response)
          Construct a new internal server error exception.
InternalServerErrorException(String message, Response response, Throwable cause)
          Construct a new internal server error exception.
NotAcceptableException(Response response)
          Construct a new "request not acceptable" exception.
NotAcceptableException(Response response, Throwable cause)
          Construct a new "request not acceptable" exception.
NotAcceptableException(String message, Response response)
          Construct a new "request not acceptable" exception.
NotAcceptableException(String message, Response response, Throwable cause)
          Construct a new "request not acceptable" exception.
NotAllowedException(Response response)
          Construct a new method not allowed exception.
NotAllowedException(Response response, Throwable cause)
          Construct a new method not allowed exception.
NotAllowedException(String message, Response response)
          Construct a new method not allowed exception.
NotAllowedException(String message, Response response, Throwable cause)
          Construct a new method not allowed exception.
NotAuthorizedException(Response response)
          Construct a new "not authorized" exception.
NotAuthorizedException(Response response, Throwable cause)
          Construct a new "not authorized" exception.
NotAuthorizedException(String message, Response response)
          Construct a new "not authorized" exception.
NotAuthorizedException(String message, Response response, Throwable cause)
          Construct a new "not authorized" exception.
NotFoundException(Response response)
          Construct a new "not found" exception.
NotFoundException(Response response, Throwable cause)
          Construct a new "not found" exception.
NotFoundException(String message, Response response)
          Construct a new "not found" exception.
NotFoundException(String message, Response response, Throwable cause)
          Construct a new "not found" exception.
NotSupportedException(Response response)
          Construct a new unsupported media type exception.
NotSupportedException(Response response, Throwable cause)
          Construct a new unsupported media type exception.
NotSupportedException(String message, Response response)
          Construct a new unsupported media type exception.
NotSupportedException(String message, Response response, Throwable cause)
          Construct a new unsupported media type exception.
RedirectionException(Response response)
          Construct a new redirection exception.
RedirectionException(String message, Response response)
          Construct a new redirection exception.
ServerErrorException(Response response)
          Construct a new server error exception.
ServerErrorException(Response response, Throwable cause)
          Construct a new server error exception.
ServerErrorException(String message, Response response)
          Construct a new server error exception.
ServerErrorException(String message, Response response, Throwable cause)
          Construct a new server error exception.
ServiceUnavailableException(Response response)
          Construct a new "service unavailable" exception.
ServiceUnavailableException(Response response, Throwable cause)
          Construct a new "service unavailable" exception.
ServiceUnavailableException(String message, Response response)
          Construct a new "service unavailable" exception.
ServiceUnavailableException(String message, Response response, Throwable cause)
          Construct a new "service unavailable" exception.
WebApplicationException(Response response)
          Construct a new instance using the supplied response.
WebApplicationException(String message, Response response)
          Construct a new instance using the supplied response.
WebApplicationException(String message, Throwable cause, 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.client
 

Methods in javax.ws.rs.client that return Response
 Response SyncInvoker.delete()
          Invoke HTTP DELETE method for the current request synchronously.
 Response SyncInvoker.get()
          Invoke HTTP GET method for the current request synchronously.
 Response ResponseProcessingException.getResponse()
          Get the HTTP response for which the processing has failed.
 Response SyncInvoker.head()
          Invoke HTTP HEAD method for the current request synchronously.
 Response Invocation.invoke()
          Synchronously invoke the request and receive a response back.
 Response SyncInvoker.method(String name)
          Invoke an arbitrary method for the current request synchronously.
 Response SyncInvoker.method(String name, Entity<?> entity)
          Invoke an arbitrary method for the current request synchronously.
 Response SyncInvoker.options()
          Invoke HTTP OPTIONS method for the current request synchronously.
 Response SyncInvoker.post(Entity<?> entity)
          Invoke HTTP POST method for the current request synchronously.
 Response SyncInvoker.put(Entity<?> entity)
          Invoke HTTP PUT method for the current request synchronously.
 Response SyncInvoker.trace()
          Invoke HTTP TRACE method for the current request synchronously.
 

Methods in javax.ws.rs.client that return types with arguments of type Response
 Future<Response> AsyncInvoker.delete()
          Invoke HTTP DELETE method for the current request asynchronously.
 Future<Response> AsyncInvoker.get()
          Invoke HTTP GET method for the current request asynchronously.
 Future<Response> AsyncInvoker.head()
          Invoke HTTP HEAD method for the current request asynchronously.
 Future<Response> AsyncInvoker.head(InvocationCallback<Response> callback)
          Invoke HTTP HEAD method for the current request asynchronously.
 Future<Response> AsyncInvoker.method(String name)
          Invoke an arbitrary method for the current request asynchronously.
 Future<Response> AsyncInvoker.method(String name, Entity<?> entity)
          Invoke an arbitrary method for the current request asynchronously.
 Future<Response> AsyncInvoker.options()
          Invoke HTTP OPTIONS method for the current request asynchronously.
 Future<Response> AsyncInvoker.post(Entity<?> entity)
          Invoke HTTP POST method for the current request asynchronously.
 Future<Response> AsyncInvoker.put(Entity<?> entity)
          Invoke HTTP PUT method for the current request asynchronously.
 Future<Response> Invocation.submit()
          Submit the request for an asynchronous invocation and receive a future response back.
 Future<Response> AsyncInvoker.trace()
          Invoke HTTP TRACE method for the current request asynchronously.
 

Methods in javax.ws.rs.client with parameters of type Response
 void ClientRequestContext.abortWith(Response response)
          Abort the filter chain with a response.
 

Method parameters in javax.ws.rs.client with type arguments of type Response
 Future<Response> AsyncInvoker.head(InvocationCallback<Response> callback)
          Invoke HTTP HEAD method for the current request asynchronously.
 

Constructors in javax.ws.rs.client with parameters of type Response
ResponseProcessingException(Response response, String message)
          Constructs a new JAX-RS runtime processing exception with the specified detail message.
ResponseProcessingException(Response response, String message, Throwable cause)
          Constructs a new JAX-RS runtime response processing exception with the specified detail message and cause.
ResponseProcessingException(Response response, Throwable cause)
          Constructs a new JAX-RS runtime response processing exception for a specific response with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
 

Uses of Response in javax.ws.rs.container
 

Methods in javax.ws.rs.container with parameters of type Response
 void ContainerRequestContext.abortWith(Response response)
          Abort the filter chain with a 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.
 

Uses of Response in org.glassfish.jersey.client
 

Methods in org.glassfish.jersey.client that return Response
 Response JerseyInvocation.Builder.delete()
           
 Response JerseyInvocation.Builder.get()
           
 Response ClientRequest.getAbortResponse()
          Get the request filter chain aborting response if set, or null otherwise.
 Response JerseyInvocation.Builder.head()
           
 Response JerseyInvocation.invoke()
           
 Response JerseyInvocation.Builder.method(String name)
           
 Response JerseyInvocation.Builder.method(String name, Entity<?> entity)
           
 Response JerseyInvocation.Builder.options()
           
 Response JerseyInvocation.Builder.post(Entity<?> entity)
           
 Response JerseyInvocation.Builder.put(Entity<?> entity)
           
 Response JerseyInvocation.Builder.trace()
           
 

Methods in org.glassfish.jersey.client that return types with arguments of type Response
 Future<Response> JerseyInvocation.submit()
           
 

Methods in org.glassfish.jersey.client with parameters of type Response
 void ClientRequest.abortWith(Response response)
           
 

Constructors in org.glassfish.jersey.client with parameters of type Response
ClientResponse(ClientRequest requestContext, Response response)
          Create new Jersey client response context initialized from a JAX-RS response.
 

Uses of Response in org.glassfish.jersey.message.internal
 

Subclasses of Response in org.glassfish.jersey.message.internal
 class OutboundJaxrsResponse
          An outbound JAX-RS response message.
 

Methods in org.glassfish.jersey.message.internal that return Response
 Response OutboundJaxrsResponse.Builder.build()
           
 

Methods in org.glassfish.jersey.message.internal with parameters of type Response
static OutboundJaxrsResponse OutboundJaxrsResponse.from(Response response)
          Get an OutboundJaxrsResponse instance for a given JAX-RS response.
 

Uses of Response in org.glassfish.jersey.server
 

Methods in org.glassfish.jersey.server that return Response
 Response ContainerRequest.getAbortResponse()
          Get the request filter chain aborting response if set, or null otherwise.
 

Methods in org.glassfish.jersey.server with parameters of type Response
 void ContainerRequest.abortWith(Response response)
           
 

Constructors in org.glassfish.jersey.server with parameters of type Response
ContainerResponse(ContainerRequest requestContext, Response response)
          Create a new Jersey container response context.
 

Uses of Response in org.glassfish.jersey.server.internal.process
 

Method parameters in org.glassfish.jersey.server.internal.process with type arguments of type Response
 void AsyncContext.invokeManaged(Producer<Response> producer)
          Invoke the provided response producer in a Jersey-managed asynchronous thread.
 

Uses of Response in org.glassfish.jersey.server.model.internal
 

Constructor parameters in org.glassfish.jersey.server.model.internal with type arguments of type Response
ModelProcessorUtil.Method(String httpMethod, List<MediaType> consumes, List<MediaType> produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflector)
          Create new method instance.
ModelProcessorUtil.Method(String httpMethod, List<MediaType> consumes, List<MediaType> produces, Inflector<ContainerRequestContext,Response> inflector)
          Create new method instance.
ModelProcessorUtil.Method(String httpMethod, MediaType consumes, MediaType produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflector)
          Create new method instance.
ModelProcessorUtil.Method(String httpMethod, MediaType consumes, MediaType produces, Inflector<ContainerRequestContext,Response> inflector)
          Create new method instance.
ModelProcessorUtil.Method(String path, String httpMethod, List<MediaType> consumes, List<MediaType> produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflectorClass)
          Create new method instance.
ModelProcessorUtil.Method(String path, String httpMethod, List<MediaType> consumes, List<MediaType> produces, Inflector<ContainerRequestContext,Response> inflector)
          Create new method instance.
ModelProcessorUtil.Method(String path, String httpMethod, MediaType consumes, MediaType produces, Class<? extends Inflector<ContainerRequestContext,Response>> inflector)
          Create new method instance.
ModelProcessorUtil.Method(String path, String httpMethod, MediaType consumes, MediaType produces, Inflector<ContainerRequestContext,Response> inflector)
          Create new method instance.
 

Uses of Response in org.glassfish.jersey.server.spi.internal
 

Methods in org.glassfish.jersey.server.spi.internal that return Response
 Response ResourceMethodDispatcher.dispatch(Object resource, Request request)
          Reflectively dispatch a request to the underlying invocable resource method via the configured invocation handler using the provided resource class instance.
 

Uses of Response in org.glassfish.jersey.server.wadl.internal
 

Methods in org.glassfish.jersey.server.wadl.internal that return Response
 Response WadlResource.geExternalGrammar(UriInfo uriInfo, String path)
           
 Response WadlResource.getWadl(UriInfo uriInfo)
           
 

Uses of Response in org.glassfish.jersey.server.wadl.processor
 

Methods in org.glassfish.jersey.server.wadl.processor that return Response
 Response WadlModelProcessor.OptionsHandler.apply(ContainerRequestContext containerRequestContext)
           
 



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