Uses of Interface
org.eclipse.jetty.client.Request
Packages that use Request
Package
Description
Jetty Proxy : Async Proxy Support
Jetty Proxy : Async Proxy Support
Jetty WebSocket API :: Client
Jetty Proxy : Async Proxy Support
Jetty WebSocket API :: Client
Jetty WebSocket API :: Client
-
Uses of Request in org.eclipse.jetty.client
Methods in org.eclipse.jetty.client that return RequestModifier and TypeMethodDescriptionRequest.body(Request.Content content) Request.cookie(HttpCookie cookie) protected RequestHttpClient.copyRequest(Request oldRequest, URI newURI) Shortcut method to specify a file as a content for this request, with the default content type of "application/octet-stream".Shortcut method to specify a file as a content for this request, with the given content type.Request.followRedirects(boolean follow) CompletableResponseListener.getRequest()FutureResponseListener.getRequest()Deprecated.HttpRequestException.getRequest()Response.getRequest()Result.getRequest()Get the request object.Request.headers(Consumer<HttpFields.Mutable> consumer) Modifies the headers of this request.default RequestRequest.idleTimeout(long timeout, TimeUnit unit) default RequestRequest.listener(Request.Listener listener) Deprecated, for removal: This API element is subject to removal in a future version.Request.method(HttpMethod method) HttpClient.newRequest(String uri) Creates a new request with the specified absolute URI in string format.HttpClient.newRequest(String host, int port) Creates a new request with the "http" scheme and the specified host and portHttpClient.newRequest(URI uri) Creates a new request with the specified absolute URI.Request.onComplete(Response.CompleteListener listener) Request.onPush(BiFunction<Request, Request, Response.CompleteListener> pushHandler) Sets a handler for pushed resources.Request.onRequestBegin(Request.BeginListener listener) Request.onRequestCommit(Request.CommitListener listener) Request.onRequestContent(Request.ContentListener listener) Request.onRequestFailure(Request.FailureListener listener) Request.onRequestHeaders(Request.HeadersListener listener) default RequestRequest.onRequestListener(Request.Listener listener) Request.onRequestQueued(Request.QueuedListener listener) Request.onRequestSuccess(Request.SuccessListener listener) Request.onResponseBegin(Response.BeginListener listener) Request.onResponseContent(Response.ContentListener listener) Request.onResponseContentAsync(Response.AsyncContentListener listener) Request.onResponseContentSource(Response.ContentSourceListener listener) Request.onResponseFailure(Response.FailureListener listener) Request.onResponseHeader(Response.HeaderListener listener) Request.onResponseHeaders(Response.HeadersListener listener) Registers a listener for the headers event.default RequestRequest.onResponseListener(Response.Listener listener) Request.onResponseSuccess(Response.SuccessListener listener) Adds a URI query parameter with the given name and value.Specifies the URI path - and possibly the query - of this request.default RequestRequest.port(int port) Creates a POST request to the specified URI.Creates a POST request to the specified URI.HttpRedirector.redirect(Request request, Response response, Response.CompleteListener listener) Redirects the givenresponseasynchronously.Tags this request with the given metadata tag.Request.trailersSupplier(Supplier<HttpFields> trailers) Provides the trailers of this request.default RequestRequest.version(HttpVersion version) Methods in org.eclipse.jetty.client with parameters of type RequestModifier and TypeMethodDescriptionbooleanbooleanbooleanbooleanInspects the givenrequestandresponseto detect whether this protocol handler should handle them.booleanbooleanbooleanbooleanprotected booleanUpgradeProtocolHandler.acceptHeaders(Request request, Response response) voidApplies the authentication result to the given request.voidvoidAuthentication.authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context) Executes the authentication mechanism for the given request, returning aAuthentication.Resultthat can be used to actually authenticate the request viaAuthentication.Result.apply(Request).BasicAuthentication.authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context) DigestAuthentication.authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context) SPNEGOAuthentication.authenticate(Request request, ContentResponse response, Authentication.HeaderInfo headerInfo, Attributes context) protected RequestHttpClient.copyRequest(Request oldRequest, URI newURI) HttpClient.createOrigin(Request request, Origin.Protocol protocol) protected voidprotected voidFinds the first protocol handler thatacceptsthe given request and response.HttpClient.findProtocolHandler(Request request, Response response) protected abstract URIAuthenticationProtocolHandler.getAuthenticationURI(Request request) protected URIProxyAuthenticationProtocolHandler.getAuthenticationURI(Request request) protected URIWWWAuthenticationProtocolHandler.getAuthenticationURI(Request request) Creates a new Origin with the given request.protected static voidRequestListeners.notifyBegin(Request.BeginListener listener, Request request) protected static voidRequestListeners.notifyCommit(Request.CommitListener listener, Request request) protected static voidRequestListeners.notifyContent(Request.ContentListener listener, Request request, ByteBuffer byteBuffer) protected static voidRequestListeners.notifyFailure(Request.FailureListener listener, Request request, Throwable failure) protected static voidRequestListeners.notifyHeaders(Request.HeadersListener listener, Request request) protected static voidRequestListeners.notifyQueued(Request.QueuedListener listener, Request request) protected static voidRequestListeners.notifySuccess(Request.SuccessListener listener, Request request) voidCallback method invoked when the request begins being processed in order to be sent.default voidvoidCallback method invoked when the request headers (and perhaps small content) have been sent.default voidvoidRequest.ContentListener.onContent(Request request, ByteBuffer content) Callback method invoked when a chunk of request content has been sent successfully.default voidRequest.Listener.onContent(Request request, ByteBuffer content) protected RunnableContinueProtocolHandler.onContinue(Request request) protected voidEarlyHintsProtocolHandler.onEarlyHints(Request request, HttpFields responseHeaders) voidCallback method invoked when the request has failed to be sentdefault voidvoidCallback method invoked when the request headers (and perhaps small content) are ready to be sent.default voidprotected voidProcessingProtocolHandler.onProcessing(Request request, HttpFields responseHeaders) default voidvoidCallback method invoked when the request is queued, waiting to be sentdefault voidvoidCallback method invoked when the request has been successfully sent.voidPrepares the request for the upgrade, for example by setting the HTTP method or by setting HTTP headers required for the upgrade.Redirects the givenresponse, blocking until the redirect is complete.HttpRedirector.redirect(Request request, Response response, Response.CompleteListener listener) Redirects the givenresponseasynchronously.HttpClient.resolveDestination(Request request) voidConnection.send(Request request, Response.CompleteListener listener) Sends a request with an associated response listener.voidDestination.send(Request request, Response.CompleteListener listener) Sends the given request to this destination.Writes the response content to the given filePath.Method parameters in org.eclipse.jetty.client with type arguments of type RequestModifier and TypeMethodDescriptionRequest.onPush(BiFunction<Request, Request, Response.CompleteListener> pushHandler) Sets a handler for pushed resources.Request.onPush(BiFunction<Request, Request, Response.CompleteListener> pushHandler) Sets a handler for pushed resources.Constructors in org.eclipse.jetty.client with parameters of type RequestModifierConstructorDescriptionCompletableResponseListener(Request request) CompletableResponseListener(Request request, int maxLength) FutureResponseListener(Request request) Deprecated.FutureResponseListener(Request request, int maxLength) Deprecated.HttpRequestException(String message, Request request) -
Uses of Request in org.eclipse.jetty.client.transport
Classes in org.eclipse.jetty.client.transport that implement RequestMethods in org.eclipse.jetty.client.transport that return RequestModifier and TypeMethodDescriptionHttpRequest.body(Request.Content content) HttpRequest.cookie(HttpCookie cookie) HttpRequest.followRedirects(boolean follow) HttpResponse.getRequest()HttpRequest.headers(Consumer<HttpFields.Mutable> consumer) HttpRequest.idleTimeout(long timeout, TimeUnit unit) HttpRequest.method(HttpMethod method) HttpRequest.onComplete(Response.CompleteListener listener) HttpRequest.onPush(BiFunction<Request, Request, Response.CompleteListener> pushHandler) HttpRequest.onRequestBegin(Request.BeginListener listener) HttpRequest.onRequestCommit(Request.CommitListener listener) HttpRequest.onRequestContent(Request.ContentListener listener) HttpRequest.onRequestFailure(Request.FailureListener listener) HttpRequest.onRequestHeaders(Request.HeadersListener listener) HttpRequest.onRequestListener(Request.Listener listener) HttpRequest.onRequestQueued(Request.QueuedListener listener) HttpRequest.onRequestSuccess(Request.SuccessListener listener) HttpRequest.onResponseBegin(Response.BeginListener listener) HttpRequest.onResponseContent(Response.ContentListener listener) HttpRequest.onResponseContentAsync(Response.AsyncContentListener listener) HttpRequest.onResponseContentSource(Response.ContentSourceListener listener) HttpRequest.onResponseFailure(Response.FailureListener listener) HttpRequest.onResponseHeader(Response.HeaderListener listener) HttpRequest.onResponseHeaders(Response.HeadersListener listener) HttpRequest.onResponseListener(Response.Listener listener) HttpRequest.onResponseSuccess(Response.SuccessListener listener) HttpRequest.port(int port) HttpRequest.trailersSupplier(Supplier<HttpFields> trailers) HttpRequest.version(HttpVersion version) Methods in org.eclipse.jetty.client.transport that return types with arguments of type RequestMethods in org.eclipse.jetty.client.transport with parameters of type RequestModifier and TypeMethodDescriptionprotected booleanHttpSender.expects100Continue(Request request) voidHttpConnection.send(Request request, Response.CompleteListener listener) voidHttpDestination.send(Request request, Response.CompleteListener listener) Method parameters in org.eclipse.jetty.client.transport with type arguments of type RequestModifier and TypeMethodDescriptionHttpRequest.onPush(BiFunction<Request, Request, Response.CompleteListener> pushHandler) HttpRequest.onPush(BiFunction<Request, Request, Response.CompleteListener> pushHandler) Constructors in org.eclipse.jetty.client.transport with parameters of type Request -
Uses of Request in org.eclipse.jetty.ee10.fcgi.proxy
Methods in org.eclipse.jetty.ee10.fcgi.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidFastCGIProxyServlet.customizeFastCGIHeaders(Request proxyRequest, HttpFields.Mutable fastCGIHeaders) protected voidFastCGIProxyServlet.sendProxyRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) -
Uses of Request in org.eclipse.jetty.ee10.proxy
Methods in org.eclipse.jetty.ee10.proxy that return RequestModifier and TypeMethodDescriptionprotected RequestAbstractProxyServlet.newProxyRequest(jakarta.servlet.http.HttpServletRequest request, String rewrittenTarget) Methods in org.eclipse.jetty.ee10.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidAbstractProxyServlet.addProxyHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAbstractProxyServlet.addViaHeader(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Adds the HTTPViaheader to the proxied request, taking into account data present in the client request.protected voidAbstractProxyServlet.addViaHeader(Request proxyRequest) Adds the HTTPViaheader to the proxied request.protected voidAbstractProxyServlet.addXForwardedHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAbstractProxyServlet.copyRequestHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected AsyncMiddleManServlet.ContentTransformerAsyncMiddleManServlet.newClientRequestContentTransformer(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected jakarta.servlet.ReadListenerAsyncMiddleManServlet.newProxyReadListener(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest, AsyncRequestContent content) protected AsyncRequestContentAsyncMiddleManServlet.newProxyRequestContent(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected jakarta.servlet.ReadListenerAsyncProxyServlet.newReadListener(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest, AsyncRequestContent content) protected voidAbstractProxyServlet.onClientRequestFailure(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Throwable failure) protected RunnableAbstractProxyServlet.onContinue(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected RunnableAsyncMiddleManServlet.onContinue(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected RunnableProxyServlet.onContinue(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAsyncProxyServlet.StreamReader.onRequestContent(jakarta.servlet.http.HttpServletRequest request, Request proxyRequest, AsyncRequestContent content, byte[] buffer, int offset, int length, Callback callback) protected Request.ContentAsyncProxyServlet.proxyRequestContent(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest) protected Request.ContentProxyServlet.proxyRequestContent(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest) Wraps the client-to-proxy request content in aRequest.Contentfor the proxy-to-server request.protected voidAbstractProxyServlet.sendProxyRequest(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected voidAsyncMiddleManServlet.sendProxyRequest(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) Constructors in org.eclipse.jetty.ee10.proxy with parameters of type RequestModifierConstructorDescriptionprotectedProxyInputStreamRequestContent(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest, InputStream input) protectedProxyReader(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest, AsyncRequestContent content) protectedStreamReader(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest, AsyncRequestContent content) -
Uses of Request in org.eclipse.jetty.ee8.proxy
Methods in org.eclipse.jetty.ee8.proxy that return RequestModifier and TypeMethodDescriptionprotected RequestAbstractProxyServlet.newProxyRequest(javax.servlet.http.HttpServletRequest request, String rewrittenTarget) Methods in org.eclipse.jetty.ee8.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidAbstractProxyServlet.addProxyHeaders(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAbstractProxyServlet.addViaHeader(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Adds the HTTPViaheader to the proxied request, taking into account data present in the client request.protected voidAbstractProxyServlet.addViaHeader(Request proxyRequest) Adds the HTTPViaheader to the proxied request.protected voidAbstractProxyServlet.addXForwardedHeaders(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAbstractProxyServlet.copyRequestHeaders(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected AsyncMiddleManServlet.ContentTransformerAsyncMiddleManServlet.newClientRequestContentTransformer(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected javax.servlet.ReadListenerAsyncMiddleManServlet.newProxyReadListener(javax.servlet.http.HttpServletRequest clientRequest, javax.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest, AsyncRequestContent content) protected AsyncRequestContentAsyncMiddleManServlet.newProxyRequestContent(javax.servlet.http.HttpServletRequest clientRequest, javax.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected javax.servlet.ReadListenerAsyncProxyServlet.newReadListener(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Request proxyRequest, AsyncRequestContent content) protected voidAbstractProxyServlet.onClientRequestFailure(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest, javax.servlet.http.HttpServletResponse proxyResponse, Throwable failure) protected RunnableAbstractProxyServlet.onContinue(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Returns the action to perform when the proxy receives a 100 Continue response from the server.protected RunnableAsyncMiddleManServlet.onContinue(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected RunnableProxyServlet.onContinue(javax.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAsyncProxyServlet.StreamReader.onRequestContent(javax.servlet.http.HttpServletRequest request, Request proxyRequest, AsyncRequestContent content, byte[] buffer, int offset, int length, Callback callback) protected Request.ContentAsyncProxyServlet.proxyRequestContent(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Request proxyRequest) protected Request.ContentProxyServlet.proxyRequestContent(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Request proxyRequest) Wraps the client-to-proxy request content in aRequest.Contentfor the proxy-to-server request.protected voidAbstractProxyServlet.sendProxyRequest(javax.servlet.http.HttpServletRequest clientRequest, javax.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected voidAsyncMiddleManServlet.sendProxyRequest(javax.servlet.http.HttpServletRequest clientRequest, javax.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) Constructors in org.eclipse.jetty.ee8.proxy with parameters of type RequestModifierConstructorDescriptionprotectedProxyInputStreamRequestContent(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Request proxyRequest, InputStream input) protectedProxyReader(javax.servlet.http.HttpServletRequest clientRequest, javax.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest, AsyncRequestContent content) protectedStreamReader(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Request proxyRequest, AsyncRequestContent content) -
Uses of Request in org.eclipse.jetty.ee8.websocket.client
Methods in org.eclipse.jetty.ee8.websocket.client with parameters of type RequestModifier and TypeMethodDescriptiondefault voidJettyUpgradeListener.onHandshakeRequest(Request request) Event that triggers before the Handshake request is sent.default voidJettyUpgradeListener.onHandshakeResponse(Request request, Response response) Event that triggers after the Handshake response has been received. -
Uses of Request in org.eclipse.jetty.ee9.fcgi.proxy
Methods in org.eclipse.jetty.ee9.fcgi.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidFastCGIProxyServlet.customizeFastCGIHeaders(Request proxyRequest, HttpFields.Mutable fastCGIHeaders) protected voidFastCGIProxyServlet.sendProxyRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) -
Uses of Request in org.eclipse.jetty.ee9.proxy
Methods in org.eclipse.jetty.ee9.proxy that return RequestModifier and TypeMethodDescriptionprotected RequestAbstractProxyServlet.newProxyRequest(jakarta.servlet.http.HttpServletRequest request, String rewrittenTarget) Methods in org.eclipse.jetty.ee9.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidAbstractProxyServlet.addProxyHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAbstractProxyServlet.addViaHeader(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Adds the HTTPViaheader to the proxied request, taking into account data present in the client request.protected voidAbstractProxyServlet.addViaHeader(Request proxyRequest) Adds the HTTPViaheader to the proxied request.protected voidAbstractProxyServlet.addXForwardedHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAbstractProxyServlet.copyRequestHeaders(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected AsyncMiddleManServlet.ContentTransformerAsyncMiddleManServlet.newClientRequestContentTransformer(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected jakarta.servlet.ReadListenerAsyncMiddleManServlet.newProxyReadListener(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest, AsyncRequestContent content) protected AsyncRequestContentAsyncMiddleManServlet.newProxyRequestContent(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected jakarta.servlet.ReadListenerAsyncProxyServlet.newReadListener(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest, AsyncRequestContent content) protected voidAbstractProxyServlet.onClientRequestFailure(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Throwable failure) protected RunnableAbstractProxyServlet.onContinue(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) Returns the action to perform when the proxy receives a 100 Continue response from the server.protected RunnableAsyncMiddleManServlet.onContinue(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected RunnableProxyServlet.onContinue(jakarta.servlet.http.HttpServletRequest clientRequest, Request proxyRequest) protected voidAsyncProxyServlet.StreamReader.onRequestContent(jakarta.servlet.http.HttpServletRequest request, Request proxyRequest, AsyncRequestContent content, byte[] buffer, int offset, int length, Callback callback) protected Request.ContentAsyncProxyServlet.proxyRequestContent(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest) protected Request.ContentProxyServlet.proxyRequestContent(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest) Wraps the client-to-proxy request content in aRequest.Contentfor the proxy-to-server request.protected voidAbstractProxyServlet.sendProxyRequest(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) protected voidAsyncMiddleManServlet.sendProxyRequest(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest) Constructors in org.eclipse.jetty.ee9.proxy with parameters of type RequestModifierConstructorDescriptionprotectedProxyInputStreamRequestContent(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest, InputStream input) protectedProxyReader(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse, Request proxyRequest, AsyncRequestContent content) protectedStreamReader(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Request proxyRequest, AsyncRequestContent content) -
Uses of Request in org.eclipse.jetty.ee9.websocket.client
Methods in org.eclipse.jetty.ee9.websocket.client with parameters of type RequestModifier and TypeMethodDescriptiondefault voidJettyUpgradeListener.onHandshakeRequest(Request request) Event that triggers before the Handshake request is sent.default voidJettyUpgradeListener.onHandshakeResponse(Request request, Response response) Event that triggers after the Handshake response has been received. -
Uses of Request in org.eclipse.jetty.fcgi.client.transport
Methods in org.eclipse.jetty.fcgi.client.transport with parameters of type Request -
Uses of Request in org.eclipse.jetty.fcgi.proxy
Methods in org.eclipse.jetty.fcgi.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidFastCGIProxyHandler.customizeFastCGIHeaders(Request proxyToServerRequest, HttpFields.Mutable fastCGIHeaders) protected voidFastCGIProxyHandler.sendProxyToServerRequest(Request clientToProxyRequest, Request proxyToServerRequest, Response proxyToClientResponse, Callback proxyToClientCallback) -
Uses of Request in org.eclipse.jetty.http2.client.transport
Methods in org.eclipse.jetty.http2.client.transport with parameters of type Request -
Uses of Request in org.eclipse.jetty.http3.client.transport
Methods in org.eclipse.jetty.http3.client.transport with parameters of type Request -
Uses of Request in org.eclipse.jetty.proxy
Methods in org.eclipse.jetty.proxy that return RequestModifier and TypeMethodDescriptionprotected RequestProxyHandler.newProxyToServerRequest(Request clientToProxyRequest, HttpURI newHttpURI) Methods in org.eclipse.jetty.proxy with parameters of type RequestModifier and TypeMethodDescriptionprotected voidProxyHandler.addForwardedHeader(Request clientToProxyRequest, Request proxyToServerRequest) protected voidProxyHandler.addProxyHeaders(Request clientToProxyRequest, Request proxyToServerRequest) protected voidProxyHandler.addViaHeader(Request clientToProxyRequest, Request proxyToServerRequest) protected voidProxyHandler.copyRequestHeaders(Request clientToProxyRequest, Request proxyToServerRequest) protected Request.ContentProxyHandler.newProxyToServerRequestContent(Request clientToProxyRequest, Response proxyToClientResponse, Request proxyToServerRequest) protected Response.CompleteListenerProxyHandler.newServerToProxyResponseListener(Request clientToProxyRequest, Request proxyToServerRequest, Response proxyToClientResponse, Callback proxyToClientCallback) protected voidProxyHandler.onProxyToClientResponseComplete(Request clientToProxyRequest, Request proxyToServerRequest, Response serverToProxyResponse, Response proxyToClientResponse, Callback proxyToClientCallback) protected voidProxyHandler.onProxyToClientResponseFailure(Request clientToProxyRequest, Request proxyToServerRequest, Response serverToProxyResponse, Response proxyToClientResponse, Callback proxyToClientCallback, Throwable failure) protected RunnableProxyHandler.onServerToProxyResponse100Continue(Request clientToProxyRequest, Request proxyToServerRequest) protected voidProxyHandler.onServerToProxyResponse102Processing(Request clientToProxyRequest, Request proxyToServerRequest, HttpFields serverToProxyResponseHeaders, Response proxyToClientResponse) protected voidProxyHandler.onServerToProxyResponse103EarlyHints(Request clientToProxyRequest, Request proxyToServerRequest, HttpFields serverToProxyResponseHeaders, Response proxyToClientResponse) protected voidProxyHandler.onServerToProxyResponseFailure(Request clientToProxyRequest, Request proxyToServerRequest, Response serverToProxyResponse, Response proxyToClientResponse, Callback proxyToClientCallback, Throwable failure) protected voidProxyHandler.sendProxyToServerRequest(Request clientToProxyRequest, Request proxyToServerRequest, Response proxyToClientResponse, Callback proxyToClientCallback) Constructors in org.eclipse.jetty.proxy with parameters of type RequestModifierConstructorDescriptionProxyResponseListener(Request clientToProxyRequest, Request proxyToServerRequest, Response proxyToClientResponse, Callback proxyToClientCallback) -
Uses of Request in org.eclipse.jetty.websocket.client
Methods in org.eclipse.jetty.websocket.client with parameters of type RequestModifier and TypeMethodDescriptiondefault voidJettyUpgradeListener.onHandshakeRequest(Request request) Event that triggers before the Handshake request is sent.default voidJettyUpgradeListener.onHandshakeResponse(Request request, Response response) Event that triggers after the Handshake response has been received. -
Uses of Request in org.eclipse.jetty.websocket.core.client
Methods in org.eclipse.jetty.websocket.core.client with parameters of type RequestModifier and TypeMethodDescriptiondefault voidUpgradeListener.onHandshakeRequest(Request request) Event that triggers before the Handshake request is sent.default voidUpgradeListener.onHandshakeResponse(Request request, Response response) Event that triggers after the Handshake response has been received.
Request.onRequestListener(Request.Listener)instead.