Uses of Class
jakarta.ws.rs.core.Response
-
Packages that use Response Package Description com.fasterxml.jackson.jakarta.rs.base jakarta.ws.rs High-level interfaces and annotations used to create RESTful service resources.jakarta.ws.rs.client The JAX-RS client APIjakarta.ws.rs.container Container-specific JAX-RS API.jakarta.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources.jakarta.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API.org.apache.cxf.sts.rest org.jboss.resteasy.client.exception org.jboss.resteasy.client.jaxrs org.jboss.resteasy.client.jaxrs.engines org.jboss.resteasy.client.jaxrs.i18n org.jboss.resteasy.client.jaxrs.internal org.jboss.resteasy.core org.jboss.resteasy.core.interception.jaxrs org.jboss.resteasy.plugins.providers.jackson org.jboss.resteasy.plugins.providers.jaxb org.jboss.resteasy.plugins.validation org.jboss.resteasy.specimpl org.jboss.resteasy.spi -
-
Uses of Response in com.fasterxml.jackson.jakarta.rs.base
Methods in com.fasterxml.jackson.jakarta.rs.base that return Response Modifier and Type Method Description ResponseJsonMappingExceptionMapper. toResponse(JsonMappingException exception)ResponseJsonParseExceptionMapper. toResponse(JsonParseException exception) -
Uses of Response in jakarta.ws.rs
Methods in jakarta.ws.rs that return Response Modifier and Type Method Description ResponseWebApplicationException. getResponse()Get the HTTP response.Constructors in jakarta.ws.rs with parameters of type Response Constructor Description 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 and a default message generated from the response's HTTP status code and the associated HTTP status reason phrase.WebApplicationException(String message, Response response)Construct a new instance using the supplied message and response.WebApplicationException(String message, Throwable cause, Response response)Construct a new instance with the supplied message, root cause and response.WebApplicationException(Throwable cause, Response response)Construct a new instance with the supplied root cause, response and a default message generated from the response's HTTP status code and the associated HTTP status reason phrase. -
Uses of Response in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return Response Modifier and Type Method Description ResponseSyncInvoker. delete()Invoke HTTP DELETE method for the current request synchronously.ResponseSyncInvoker. get()Invoke HTTP GET method for the current request synchronously.ResponseResponseProcessingException. getResponse()Get the HTTP response for which the processing has failed.ResponseSyncInvoker. head()Invoke HTTP HEAD method for the current request synchronously.ResponseInvocation. invoke()Synchronously invoke the request and receive a response back.ResponseSyncInvoker. method(String name)Invoke an arbitrary method for the current request synchronously.ResponseSyncInvoker. method(String name, Entity<?> entity)Invoke an arbitrary method for the current request synchronously.ResponseSyncInvoker. options()Invoke HTTP OPTIONS method for the current request synchronously.ResponseSyncInvoker. post(Entity<?> entity)Invoke HTTP POST method for the current request synchronously.ResponseSyncInvoker. put(Entity<?> entity)Invoke HTTP PUT method for the current request synchronously.ResponseSyncInvoker. trace()Invoke HTTP TRACE method for the current request synchronously.Methods in jakarta.ws.rs.client that return types with arguments of type Response Modifier and Type Method Description Future<Response>AsyncInvoker. delete()Invoke HTTP DELETE method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. delete()Future<Response>AsyncInvoker. get()Invoke HTTP GET method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. get()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.CompletionStage<Response>CompletionStageRxInvoker. head()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.CompletionStage<Response>CompletionStageRxInvoker. method(String name)CompletionStage<Response>CompletionStageRxInvoker. method(String name, Entity<?> entity)Future<Response>AsyncInvoker. options()Invoke HTTP OPTIONS method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. options()Future<Response>AsyncInvoker. post(Entity<?> entity)Invoke HTTP POST method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. post(Entity<?> entity)Future<Response>AsyncInvoker. put(Entity<?> entity)Invoke HTTP PUT method for the current request asynchronously.CompletionStage<Response>CompletionStageRxInvoker. put(Entity<?> entity)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.CompletionStage<Response>CompletionStageRxInvoker. trace()Methods in jakarta.ws.rs.client with parameters of type Response Modifier and Type Method Description voidClientRequestContext. abortWith(Response response)Abort the filter chain with a response.Method parameters in jakarta.ws.rs.client with type arguments of type Response Modifier and Type Method Description Future<Response>AsyncInvoker. head(InvocationCallback<Response> callback)Invoke HTTP HEAD method for the current request asynchronously.Constructors in jakarta.ws.rs.client with parameters of type Response Constructor Description 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 specificresponsewith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause). -
Uses of Response in jakarta.ws.rs.container
Methods in jakarta.ws.rs.container with parameters of type Response Modifier and Type Method Description voidContainerRequestContext. abortWith(Response response)Abort the filter chain with a response. -
Uses of Response in jakarta.ws.rs.core
Methods in jakarta.ws.rs.core that return Response Modifier and Type Method Description abstract ResponseResponse.ResponseBuilder. build()Create a Response instance from the current ResponseBuilder.Methods in jakarta.ws.rs.core with parameters of type Response Modifier and Type Method Description static Response.ResponseBuilderResponse. fromResponse(Response response)Create a new ResponseBuilder by performing a shallow copy of an existing Response. -
Uses of Response in jakarta.ws.rs.ext
Methods in jakarta.ws.rs.ext that return Response Modifier and Type Method Description ResponseExceptionMapper. toResponse(E exception)Map an exception to aResponse. -
Uses of Response in org.apache.cxf.sts.rest
Methods in org.apache.cxf.sts.rest that return Response Modifier and Type Method Description ResponseRESTSecurityTokenService. getJSONToken(String tokenType, String keyType, List<String> requestedClaims, String appliesTo)ResponseRESTSecurityTokenServiceImpl. getJSONToken(String tokenType, String keyType, List<String> requestedClaims, String appliesTo)ResponseRESTSecurityTokenService. getKeyExchangeToken(RequestSecurityTokenType request)ResponseRESTSecurityTokenServiceImpl. getKeyExchangeToken(RequestSecurityTokenType request)ResponseRESTSecurityTokenService. getPlainToken(String tokenType, String keyType, List<String> requestedClaims, String appliesTo)ResponseRESTSecurityTokenServiceImpl. getPlainToken(String tokenType, String keyType, List<String> requestedClaims, String appliesTo)ResponseRESTSecurityTokenService. getToken(RESTSecurityTokenService.Action action, RequestSecurityTokenType request)ResponseRESTSecurityTokenServiceImpl. getToken(RESTSecurityTokenService.Action action, RequestSecurityTokenType request)ResponseRESTSecurityTokenService. getXMLToken(String tokenType, String keyType, List<String> requestedClaims, String appliesTo, boolean wstrustResponse)ResponseRESTSecurityTokenServiceImpl. getXMLToken(String tokenType, String keyType, List<String> requestedClaims, String appliesTo, boolean wstrustResponse)ResponseRESTSecurityTokenService. removeToken(RequestSecurityTokenType request)Same asRESTSecurityTokenService.getToken(Action, RequestSecurityTokenType)with 'cancel' action.ResponseRESTSecurityTokenServiceImpl. removeToken(RequestSecurityTokenType request) -
Uses of Response in org.jboss.resteasy.client.exception
Methods in org.jboss.resteasy.client.exception that return Response Modifier and Type Method Description static ResponseWebApplicationExceptionWrapper. sanitize(Response response)Sanitizes the response by creating a new response with only the status code, allowed methods, entity and the media type.Methods in org.jboss.resteasy.client.exception with parameters of type Response Modifier and Type Method Description static ResponseWebApplicationExceptionWrapper. sanitize(Response response)Sanitizes the response by creating a new response with only the status code, allowed methods, entity and the media type. -
Uses of Response in org.jboss.resteasy.client.jaxrs
Methods in org.jboss.resteasy.client.jaxrs that return Response Modifier and Type Method Description ResponseClientHttpEngine. invoke(Invocation request)Methods in org.jboss.resteasy.client.jaxrs that return types with arguments of type Response Modifier and Type Method Description org.reactivestreams.Publisher<Response>PublisherRxInvoker. delete()org.reactivestreams.Publisher<Response>PublisherRxInvoker. get()org.reactivestreams.Publisher<Response>PublisherRxInvoker. head()org.reactivestreams.Publisher<Response>PublisherRxInvoker. method(String name)org.reactivestreams.Publisher<Response>PublisherRxInvoker. method(String name, Entity<?> entity)org.reactivestreams.Publisher<Response>PublisherRxInvoker. options()org.reactivestreams.Publisher<Response>PublisherRxInvoker. post(Entity<?> entity)org.reactivestreams.Publisher<Response>PublisherRxInvoker. put(Entity<?> entity)org.reactivestreams.Publisher<Response>PublisherRxInvoker. trace() -
Uses of Response in org.jboss.resteasy.client.jaxrs.engines
Methods in org.jboss.resteasy.client.jaxrs.engines that return Response Modifier and Type Method Description ResponseApacheHttpAsyncClient4Engine. invoke(Invocation request)ResponseManualClosingApacheHttpClient43Engine. invoke(Invocation inv)ResponseURLConnectionEngine. invoke(Invocation inv) -
Uses of Response in org.jboss.resteasy.client.jaxrs.i18n
Methods in org.jboss.resteasy.client.jaxrs.i18n with parameters of type Response Modifier and Type Method Description ResponseProcessingExceptionMessages_$bundle. noContentTypeFound(Response response)ResponseProcessingExceptionMessages. noContentTypeFound(Response response) -
Uses of Response in org.jboss.resteasy.client.jaxrs.internal
Subclasses of Response in org.jboss.resteasy.client.jaxrs.internal Modifier and Type Class Description classAbortedResponseclassClientResponseclassFinalizedClientResponseDeprecated.finalizers should no longer be used and this type will be removed in the futureFields in org.jboss.resteasy.client.jaxrs.internal declared as Response Modifier and Type Field Description protected ResponseClientRequestContextImpl. abortedWithResponseMethods in org.jboss.resteasy.client.jaxrs.internal that return Response Modifier and Type Method Description ResponseClientInvocationBuilder. delete()ResponseClientInvocationBuilder. get()ResponseClientRequestContextImpl. getAbortedWithResponse()ResponseClientInvocationBuilder. head()ResponseClientInvocationBuilder. method(String name)ResponseClientInvocationBuilder. method(String name, Entity<?> entity)ResponseClientInvocationBuilder. options()ResponseClientInvocationBuilder. patch(Entity<?> entity)ResponseClientInvocationBuilder. post(Entity<?> entity)ResponseClientInvocationBuilder. put(Entity<?> entity)ResponseClientInvocationBuilder. trace()Methods in org.jboss.resteasy.client.jaxrs.internal that return types with arguments of type Response Modifier and Type Method Description Future<Response>AsynchronousInvoke. delete()CompletionStage<Response>CompletionStageRxInvokerImpl. delete()org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. delete()Future<Response>AsynchronousInvoke. get()CompletionStage<Response>CompletionStageRxInvokerImpl. get()org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. get()Future<Response>AsynchronousInvoke. head()Future<Response>AsynchronousInvoke. head(InvocationCallback<Response> callback)CompletionStage<Response>CompletionStageRxInvokerImpl. head()org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. head()Future<Response>AsynchronousInvoke. method(String name)Future<Response>AsynchronousInvoke. method(String name, Entity<?> entity)CompletionStage<Response>CompletionStageRxInvokerImpl. method(String name)CompletionStage<Response>CompletionStageRxInvokerImpl. method(String name, Entity<?> entity)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. method(String name)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. method(String name, Entity<?> entity)Future<Response>AsynchronousInvoke. options()CompletionStage<Response>CompletionStageRxInvokerImpl. options()org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. options()Future<Response>AsynchronousInvoke. patch(Entity<?> entity)CompletionStage<Response>CompletionStageRxInvokerImpl. patch(Entity<?> entity)Future<Response>AsynchronousInvoke. post(Entity<?> entity)CompletionStage<Response>CompletionStageRxInvokerImpl. post(Entity<?> entity)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. post(Entity<?> entity)Future<Response>AsynchronousInvoke. put(Entity<?> entity)CompletionStage<Response>CompletionStageRxInvokerImpl. put(Entity<?> entity)org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. put(Entity<?> entity)Future<Response>ClientInvocation. submit()CompletableFuture<Response>ClientInvocation. submitCF()Future<Response>AsynchronousInvoke. trace()CompletionStage<Response>CompletionStageRxInvokerImpl. trace()org.reactivestreams.Publisher<Response>PublisherRxInvokerImpl. trace()Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type Response Modifier and Type Method Description voidClientRequestContextImpl. abortWith(Response response)static <T> TClientInvocation. extractResult(GenericType<T> responseType, Response response, Annotation[] annotations)Extracts result from response throwing an appropriate exception if not a successful response.static <T> TClientInvocation. handleErrorStatus(Response response)Throw an exception.Method parameters in org.jboss.resteasy.client.jaxrs.internal with type arguments of type Response Modifier and Type Method Description Future<Response>AsynchronousInvoke. head(InvocationCallback<Response> callback)Constructors in org.jboss.resteasy.client.jaxrs.internal with parameters of type Response Constructor Description AbortedResponse(ClientConfiguration configuration, Response response) -
Uses of Response in org.jboss.resteasy.core
Subclasses of Response in org.jboss.resteasy.core Modifier and Type Class Description classServerResponseMethods in org.jboss.resteasy.core that return Response Modifier and Type Method Description ResponseInternalDispatcher. delete(String uri)ResponseSynchronousDispatcher. execute(HttpRequest request, HttpResponse response, ResourceInvoker invoker)Return a response wither from an invoke or exception handling.ResponseInternalDispatcher. executeEntity(String method, String uri, String contentType, Object entity)ResponseExceptionHandler. executeExactExceptionMapper(Throwable exception)Deprecated.protected ResponseExceptionHandler. executeExactExceptionMapper(Throwable exception, RESTEasyTracingLogger logger)If there exists an Exception mapper for exception, execute it, otherwise, do NOT recurse up class hierarchy of exception.ResponseExceptionHandler. executeExceptionMapper(Throwable exception)Deprecated.protected ResponseExceptionHandler. executeExceptionMapper(Throwable exception, RESTEasyTracingLogger logger)Execute an ExceptionMapper if one exists for the given exception.ResponseExceptionHandler. executeExceptionMapperForClass(Throwable exception, Class clazz)Deprecated.protected ResponseExceptionHandler. executeExceptionMapperForClass(Throwable exception, Class clazz, RESTEasyTracingLogger logger)ResponseAsynchronousDispatcher. get(long wait, String jobId)ResponseInternalDispatcher. getResponse(String uri)ResponseInternalDispatcher. getResponse(MockHttpRequest request)ResponseInternalDispatcher. getResponse(MockHttpRequest request, Object entity)protected ResponseExceptionHandler. handleApplicationException(HttpRequest request, ApplicationException e, RESTEasyTracingLogger logger)protected ResponseExceptionHandler. handleClientErrorException(HttpRequest request, ClientErrorException e)ResponseExceptionHandler. handleException(HttpRequest request, Throwable e)protected ResponseExceptionHandler. handleFailure(HttpRequest request, Failure failure)protected ResponseExceptionHandler. handleReaderException(HttpRequest request, ReaderException e, RESTEasyTracingLogger logger)protected ResponseExceptionHandler. handleWebApplicationException(WebApplicationException wae)protected ResponseExceptionHandler. handleWriterException(HttpRequest request, WriterException e, RESTEasyTracingLogger logger)ResponseSynchronousDispatcher. internalInvocation(HttpRequest request, HttpResponse response, Object entity)ResponseInternalDispatcher. postEntity(String uri, Object entity)ResponseInternalDispatcher. postEntity(String uri, String contentType, Object entity)ResponseSynchronousDispatcher. preprocess(HttpRequest request)protected ResponseAsynchronousDispatcher. process(long wait, String jobId, boolean eatJob)ResponseInternalDispatcher. putEntity(String uri, Object entity)ResponseInternalDispatcher. putEntity(String uri, String contentType, Object entity)ResponseAsynchronousDispatcher. readAndRemove(long wait, String jobId)protected ResponseExceptionHandler. unwrapException(HttpRequest request, Throwable e, RESTEasyTracingLogger logger)Methods in org.jboss.resteasy.core with parameters of type Response Modifier and Type Method Description voidSynchronousDispatcher. asynchronousDelivery(HttpRequest request, HttpResponse response, Response jaxrsResponse)Deprecated.voidSynchronousDispatcher. asynchronousDelivery(HttpRequest request, HttpResponse response, Response jaxrsResponse, Consumer<Throwable> onComplete)protected voidSynchronousDispatcher. writeResponse(HttpRequest request, HttpResponse response, Response jaxrsResponse) -
Uses of Response in org.jboss.resteasy.core.interception.jaxrs
Fields in org.jboss.resteasy.core.interception.jaxrs declared as Response Modifier and Type Field Description protected ResponsePreMatchContainerRequestContext. responseMethods in org.jboss.resteasy.core.interception.jaxrs that return Response Modifier and Type Method Description ResponsePreMatchContainerRequestContext. getResponseAbortedWith()Methods in org.jboss.resteasy.core.interception.jaxrs with parameters of type Response Modifier and Type Method Description voidPreMatchContainerRequestContext. abortWith(Response response)voidResponseContainerRequestContext. abortWith(Response response) -
Uses of Response in org.jboss.resteasy.plugins.providers.jackson
Methods in org.jboss.resteasy.plugins.providers.jackson that return Response Modifier and Type Method Description ResponseUnrecognizedPropertyExceptionHandler. toResponse(UnrecognizedPropertyException exception) -
Uses of Response in org.jboss.resteasy.plugins.providers.jaxb
Constructors in org.jboss.resteasy.plugins.providers.jaxb with parameters of type Response Constructor Description 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.validation
Methods in org.jboss.resteasy.plugins.validation that return Response Modifier and Type Method Description protected ResponseResteasyViolationExceptionMapper. buildResponse(Object entity, String mediaType, Response.Status status)protected ResponseResteasyViolationExceptionMapper. buildViolationReportResponse(ResteasyViolationException exception, Response.Status status)ResponseResteasyViolationExceptionMapper. toResponse(ValidationException exception) -
Uses of Response in org.jboss.resteasy.specimpl
Subclasses of Response in org.jboss.resteasy.specimpl Modifier and Type Class Description classAbstractBuiltResponseA response object not attached to a client or server invocation.classBuiltResponseA response object not attached to a client or server invocation.classBuiltResponseEntityNotBackedMethods in org.jboss.resteasy.specimpl that return Response Modifier and Type Method Description ResponseResponseBuilderImpl. build() -
Uses of Response in org.jboss.resteasy.spi
Fields in org.jboss.resteasy.spi declared as Response Modifier and Type Field Description protected ResponseFailure. responseMethods in org.jboss.resteasy.spi that return Response Modifier and Type Method Description ResponseFailure. getResponse()ResponseDispatcher. internalInvocation(HttpRequest request, HttpResponse response, Object entity)ResponseResourceInvoker. invoke(HttpRequest request, HttpResponse response)ResponseResourceInvoker. invoke(HttpRequest request, HttpResponse response, Object target)Methods in org.jboss.resteasy.spi with parameters of type Response Modifier and Type Method Description voidFailure. setResponse(Response response)
-