Uses of Interface
org.littleshoot.proxy.HttpFilters
-
Packages that use HttpFilters Package Description org.littleshoot.proxy org.littleshoot.proxy.impl -
-
Uses of HttpFilters in org.littleshoot.proxy
Classes in org.littleshoot.proxy that implement HttpFilters Modifier and Type Class Description classHttpFiltersAdapterConvenience base class for implementations ofHttpFilters.Methods in org.littleshoot.proxy that return HttpFilters Modifier and Type Method Description HttpFiltersHttpFiltersSource. filterRequest(HttpRequest originalRequest, ChannelHandlerContext ctx)Return anHttpFiltersobject for this request if and only if we want to filter the request and/or its responses.HttpFiltersHttpFiltersSourceAdapter. filterRequest(HttpRequest originalRequest)HttpFiltersHttpFiltersSourceAdapter. filterRequest(HttpRequest originalRequest, ChannelHandlerContext ctx) -
Uses of HttpFilters in org.littleshoot.proxy.impl
Fields in org.littleshoot.proxy.impl declared as HttpFilters Modifier and Type Field Description private HttpFiltersClientToProxyConnection. currentFiltersThe current filters to apply to incoming requests/chunks.private HttpFiltersProxyToServerConnection. currentFiltersThe filters to apply to response/chunks received from server.Methods in org.littleshoot.proxy.impl that return HttpFilters Modifier and Type Method Description protected HttpFiltersProxyConnection. getHttpFiltersFromProxyServer(HttpRequest httpRequest)Request the ProxyServer for Filters.protected HttpFiltersProxyToServerConnection. getHttpFiltersFromProxyServer(HttpRequest httpRequest)Methods in org.littleshoot.proxy.impl with parameters of type HttpFilters Modifier and Type Method Description (package private) static ProxyToServerConnectionProxyToServerConnection. create(DefaultHttpProxyServer proxyServer, ClientToProxyConnection clientConnection, String serverHostAndPort, HttpFilters initialFilters, HttpRequest initialHttpRequest, GlobalTrafficShapingHandler globalTrafficShapingHandler)Create a new ProxyToServerConnection.(package private) voidClientToProxyConnection. respond(ProxyToServerConnection serverConnection, HttpFilters filters, HttpRequest currentHttpRequest, HttpResponse currentHttpResponse, HttpObject httpObject)Send a response to the client.(package private) voidProxyToServerConnection. write(Object msg, HttpFilters filters)LikeProxyToServerConnection.write(Object)and also sets the current filters to the given value.Constructors in org.littleshoot.proxy.impl with parameters of type HttpFilters Constructor Description ProxyToServerConnection(DefaultHttpProxyServer proxyServer, ClientToProxyConnection clientConnection, String serverHostAndPort, ChainedProxy chainedProxy, Queue<ChainedProxy> availableChainedProxies, HttpFilters initialFilters, GlobalTrafficShapingHandler globalTrafficShapingHandler)
-