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.jboss.resteasy.client   
org.jboss.resteasy.client.core   
org.jboss.resteasy.client.jaxrs.internal   
org.jboss.resteasy.core   
org.jboss.resteasy.core.interception   
org.jboss.resteasy.keystone.client   
org.jboss.resteasy.keystone.server   
org.jboss.resteasy.plugins.providers.jaxb   
org.jboss.resteasy.plugins.providers.validation   
org.jboss.resteasy.skeleton.key.idm.service   
org.jboss.resteasy.skeleton.key.jaxrs   
org.jboss.resteasy.specimpl   
org.jboss.resteasy.spi   
org.jboss.resteasy.springmvc   
org.jboss.resteasy.test.application   
org.jboss.resteasy.test.async   
 

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.
ClientErrorException(Response response)
          Construct a new client error exception.
ClientErrorException(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.
InternalServerErrorException(Response response)
          Construct a new internal server error exception.
InternalServerErrorException(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.
NotAllowedException(Response response)
          Construct a new method not allowed exception.
NotAllowedException(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.
NotFoundException(Response response)
          Construct a new "not found" exception.
NotFoundException(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.
RedirectionException(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.
ServiceUnavailableException(Response response)
          Construct a new "service unavailable" exception.
ServiceUnavailableException(Response response, Throwable cause)
          Construct a new "service unavailable" exception.
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.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.jboss.resteasy.client
 

Subclasses of Response in org.jboss.resteasy.client
 class ClientResponse<T>
          Deprecated.  
 

Uses of Response in org.jboss.resteasy.client.core
 

Subclasses of Response in org.jboss.resteasy.client.core
 class BaseClientResponse<T>
           
 

Uses of Response in org.jboss.resteasy.client.jaxrs.internal
 

Subclasses of Response in org.jboss.resteasy.client.jaxrs.internal
 class AbortedResponse
           
 

Fields in org.jboss.resteasy.client.jaxrs.internal declared as Response
protected  Response ClientRequestContextImpl.abortedWithResponse
           
 

Methods in org.jboss.resteasy.client.jaxrs.internal that return Response
 Response ClientInvocationBuilder.delete()
           
 Response ClientInvocationBuilder.get()
           
 Response ClientRequestContextImpl.getAbortedWithResponse()
           
 Response ClientInvocationBuilder.head()
           
 Response ClientInvocation.invoke()
           
 Response ClientInvocationBuilder.method(String name)
           
 Response ClientInvocationBuilder.method(String name, Entity<?> entity)
           
 Response ClientInvocationBuilder.options()
           
 Response ClientInvocationBuilder.post(Entity<?> entity)
           
 Response ClientInvocationBuilder.put(Entity<?> entity)
           
 Response ClientInvocationBuilder.trace()
           
 

Methods in org.jboss.resteasy.client.jaxrs.internal that return types with arguments of type Response
 Future<Response> AsynchronousInvoke.delete()
           
 Future<Response> AsynchronousInvoke.get()
           
 Future<Response> AsynchronousInvoke.head()
           
 Future<Response> AsynchronousInvoke.head(InvocationCallback<Response> callback)
           
 Future<Response> AsynchronousInvoke.method(String name)
           
 Future<Response> AsynchronousInvoke.method(String name, Entity<?> entity)
           
 Future<Response> AsynchronousInvoke.options()
           
 Future<Response> AsynchronousInvoke.post(Entity<?> entity)
           
 Future<Response> AsynchronousInvoke.put(Entity<?> entity)
           
 Future<Response> ClientInvocation.submit()
           
 Future<Response> AsynchronousInvoke.trace()
           
 

Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type Response
 void ClientRequestContextImpl.abortWith(Response response)
           
static
<T> T
ClientInvocationBuilder.extractResult(GenericType<T> responseType, Response response, Annotation[] annotations)
          Extracts result from response throwing an appropriate exception if not a successful response.
static
<T> T
ClientInvocationBuilder.handleErrorStatus(Response response)
          Throw an exception.
 

Method parameters in org.jboss.resteasy.client.jaxrs.internal with type arguments of type Response
 Future<Response> AsynchronousInvoke.head(InvocationCallback<Response> callback)
           
 

Constructors in org.jboss.resteasy.client.jaxrs.internal with parameters of type Response
AbortedResponse(ClientConfiguration configuration, Response response)
           
 

Uses of Response in org.jboss.resteasy.core
 

Subclasses of Response in org.jboss.resteasy.core
 class ServerResponse
           
 

Methods in org.jboss.resteasy.core that return Response
 Response SynchronousDispatcher.execute(HttpRequest request, HttpResponse response, ResourceInvoker invoker)
          Return a response wither from an invoke or exception handling
 Response ExceptionHandler.executeExactExceptionMapper(Throwable exception)
          If there exists an Exception mapper for exception, execute it, otherwise, do NOT recurse up class hierarchy of exception.
 Response ExceptionHandler.executeExceptionMapper(Throwable exception)
          Execute an ExceptionMapper if one exists for the given exception.
 Response ExceptionHandler.executeExceptionMapperForClass(Throwable exception, Class clazz)
           
 Response AsynchronousDispatcher.get(long wait, String jobId)
           
protected  Response ExceptionHandler.handleApplicationException(HttpRequest request, ApplicationException e)
           
 Response ExceptionHandler.handleException(HttpRequest request, Throwable e)
           
protected  Response ExceptionHandler.handleFailure(HttpRequest request, Failure failure)
           
protected  Response ExceptionHandler.handleReaderException(HttpRequest request, ReaderException e)
           
protected  Response ExceptionHandler.handleWebApplicationException(WebApplicationException wae)
           
protected  Response ExceptionHandler.handleWriterException(HttpRequest request, WriterException e)
           
 Response SynchronousDispatcher.internalInvocation(HttpRequest request, HttpResponse response, Object entity)
           
 Response Dispatcher.internalInvocation(HttpRequest request, HttpResponse response, Object entity)
           
 Response SynchronousDispatcher.preprocess(HttpRequest request)
           
protected  Response AsynchronousDispatcher.process(long wait, String jobId, boolean eatJob)
           
 Response AsynchronousDispatcher.readAndRemove(long wait, String jobId)
           
protected  Response ExceptionHandler.unwrapException(HttpRequest request, Throwable e)
           
 

Methods in org.jboss.resteasy.core with parameters of type Response
 void SynchronousDispatcher.asynchronousDelivery(HttpRequest request, HttpResponse response, Response jaxrsResponse)
           
protected  void SynchronousDispatcher.setDefaultContentType(HttpRequest request, Response jaxrsResponse)
           
protected  void SynchronousDispatcher.writeResponse(HttpRequest request, HttpResponse response, Response jaxrsResponse)
           
 

Uses of Response in org.jboss.resteasy.core.interception
 

Fields in org.jboss.resteasy.core.interception declared as Response
protected  Response PreMatchContainerRequestContext.response
           
 

Methods in org.jboss.resteasy.core.interception that return Response
 Response PreMatchContainerRequestContext.getResponseAbortedWith()
           
 

Methods in org.jboss.resteasy.core.interception with parameters of type Response
 void ResponseContainerRequestContext.abortWith(Response response)
           
 void PreMatchContainerRequestContext.abortWith(Response response)
           
 

Uses of Response in org.jboss.resteasy.keystone.client
 

Methods in org.jboss.resteasy.keystone.client that return Response
 Response ProjectsResource.create(Project project)
           
 Response RolesResource.create(Role role)
           
 Response UsersResource.create(StoredUser user)
           
 Response RolesResource.create(String roleName)
           
 Response UsersResource.delete(String id)
           
 Response ProjectsResource.delete(String id)
           
 

Uses of Response in org.jboss.resteasy.keystone.server
 

Methods in org.jboss.resteasy.keystone.server that return Response
 Response ProjectsService.create(Project project)
           
 Response RolesService.create(UriInfo uriInfo, Role role)
           
 Response UsersService.create(UriInfo uriInfo, StoredUser user)
           
 Response RolesService.create(UriInfo uriInfo, String roleName)
           
 Response UsersService.delete(String id)
           
 Response RolesService.delete(String id)
           
 Response ProjectsService.delete(String id)
           
 

Uses of Response in org.jboss.resteasy.plugins.providers.jaxb
 

Constructors in org.jboss.resteasy.plugins.providers.jaxb with parameters of type Response
JAXBMarshalException(String s, Response response)
           
JAXBMarshalException(String s, Throwable throwable, Response response)
           
JAXBMarshalException(Throwable throwable, Response response)
           
JAXBUnmarshalException(String s, Response response)
           
JAXBUnmarshalException(String s, Throwable throwable, Response response)
           
JAXBUnmarshalException(Throwable throwable, Response response)
           
 

Uses of Response in org.jboss.resteasy.plugins.providers.validation
 

Methods in org.jboss.resteasy.plugins.providers.validation that return Response
 Response ResteasyViolationExceptionMapper.toResponse(ResteasyViolationExceptionExtension exception)
           
 

Uses of Response in org.jboss.resteasy.skeleton.key.idm.service
 

Methods in org.jboss.resteasy.skeleton.key.idm.service that return Response
 Response TokenManagement.accessRequest(String realmId, MultivaluedMap<String,String> formData)
           
 Response TokenManagement.accessTokenGrant(String realmId, MultivaluedMap<String,String> formParams)
          OAuth Section 4.4 Client Credentials Grant
 Response RealmResource.getRealmsByName(String name)
           
 Response RealmFactory.importDomain(RealmRepresentation rep)
           
 Response TokenManagement.login(String realmName, MultivaluedMap<String,String> formData)
           
 Response TokenManagement.requestAccessCode(String realmName, String responseType, String redirect, String clientId, String scopeParam, String state)
           
 

Uses of Response in org.jboss.resteasy.skeleton.key.jaxrs
 

Methods in org.jboss.resteasy.skeleton.key.jaxrs that return Response
 Response JaxrsOAuthClient.redirect(UriInfo uriInfo, String redirectUri)
           
 

Uses of Response in org.jboss.resteasy.specimpl
 

Subclasses of Response in org.jboss.resteasy.specimpl
 class BuiltResponse
          A response object not attached to a client or server invocation.
 

Methods in org.jboss.resteasy.specimpl that return Response
 Response ResponseBuilderImpl.build()
           
 

Uses of Response in org.jboss.resteasy.spi
 

Fields in org.jboss.resteasy.spi declared as Response
protected  Response Failure.response
           
 

Methods in org.jboss.resteasy.spi that return Response
 Response InternalDispatcher.delete(String uri)
           
 Response InternalDispatcher.executeEntity(String method, String uri, String contentType, Object entity)
           
 Response Failure.getResponse()
           
 Response InternalDispatcher.getResponse(MockHttpRequest request)
           
 Response InternalDispatcher.getResponse(MockHttpRequest request, Object entity)
           
 Response InternalDispatcher.getResponse(String uri)
           
 Response InternalDispatcher.postEntity(String uri, Object entity)
           
 Response InternalDispatcher.postEntity(String uri, String contentType, Object entity)
           
 Response InternalDispatcher.putEntity(String uri, Object entity)
           
 Response InternalDispatcher.putEntity(String uri, String contentType, Object entity)
           
 

Methods in org.jboss.resteasy.spi with parameters of type Response
 void Failure.setResponse(Response response)
           
 void AsynchronousResponse.setResponse(Response response)
           
 

Constructors in org.jboss.resteasy.spi with parameters of type Response
BadRequestException(String s, Response response)
           
BadRequestException(String s, Throwable throwable, Response response)
           
BadRequestException(Throwable throwable, Response response)
           
DefaultOptionsMethodException(String s, Response response)
           
Failure(String s, Response response)
           
Failure(String s, Throwable throwable, Response response)
           
Failure(Throwable throwable, Response response)
           
ForbiddenException(String s, Response response)
          Deprecated.  
ForbiddenException(String s, Throwable throwable, Response response)
          Deprecated.  
ForbiddenException(Throwable throwable, Response response)
          Deprecated.  
InternalServerErrorException(String s, Response response)
           
InternalServerErrorException(String s, Throwable throwable, Response response)
           
InternalServerErrorException(Throwable throwable, Response response)
           
LoggableFailure(String s, Response response)
           
LoggableFailure(String s, Throwable throwable, Response response)
           
LoggableFailure(Throwable throwable, Response response)
           
MethodNotAllowedException(String s, Response response)
           
MethodNotAllowedException(String s, Throwable throwable, Response response)
           
MethodNotAllowedException(Throwable throwable, Response response)
           
NoLogWebApplicationException(Response response)
           
NoLogWebApplicationException(Throwable cause, Response response)
           
NotAcceptableException(String s, Response response)
           
NotAcceptableException(String s, Throwable throwable, Response response)
           
NotAcceptableException(Throwable throwable, Response response)
           
NotFoundException(String s, Response response)
           
NotFoundException(String s, Throwable throwable, Response response)
           
NotFoundException(Throwable throwable, Response response)
           
ReaderException(String s, Response response)
           
ReaderException(String s, Throwable throwable, Response response)
           
ReaderException(Throwable throwable, Response response)
           
UnauthorizedException(String s, Response response)
          Deprecated.  
UnauthorizedException(String s, Throwable throwable, Response response)
          Deprecated.  
UnauthorizedException(Throwable throwable, Response response)
          Deprecated.  
UnsupportedMediaTypeException(String s, Response response)
           
UnsupportedMediaTypeException(String s, Throwable throwable, Response response)
           
UnsupportedMediaTypeException(Throwable throwable, Response response)
           
WriterException(String s, Response response)
           
WriterException(String s, Throwable throwable, Response response)
           
WriterException(Throwable throwable, Response response)
           
 

Uses of Response in org.jboss.resteasy.springmvc
 

Methods in org.jboss.resteasy.springmvc that return Response
 Response ResteasyRequestWrapper.getAbortedResponse()
           
 

Methods in org.jboss.resteasy.springmvc with parameters of type Response
 void ResteasyRequestWrapper.setAbortedResponse(Response abortedResponse)
           
 

Uses of Response in org.jboss.resteasy.test.application
 

Methods in org.jboss.resteasy.test.application that return Response
 Response FooExceptionMapper.toResponse(FooException exception)
           
 

Uses of Response in org.jboss.resteasy.test.async
 

Methods in org.jboss.resteasy.test.async that return Response
 Response JaxrsResource.getCancelled()
           
 



Copyright © 2013. All Rights Reserved.