Class EchoHandler
java.lang.Object
org.apache.hc.client5.testing.classic.EchoHandler
- All Implemented Interfaces:
org.apache.hc.core5.http.io.HttpRequestHandler
A handler that echos the incoming request entity.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
handle
(org.apache.hc.core5.http.ClassicHttpRequest request, org.apache.hc.core5.http.ClassicHttpResponse response, org.apache.hc.core5.http.protocol.HttpContext context) Handles a request by echoing the incoming request entity.
-
Constructor Details
-
EchoHandler
public EchoHandler()
-
-
Method Details
-
handle
public void handle(org.apache.hc.core5.http.ClassicHttpRequest request, org.apache.hc.core5.http.ClassicHttpResponse response, org.apache.hc.core5.http.protocol.HttpContext context) throws org.apache.hc.core5.http.HttpException, IOException Handles a request by echoing the incoming request entity. If there is no request entity, an empty document is returned.- Specified by:
handle
in interfaceorg.apache.hc.core5.http.io.HttpRequestHandler
- Parameters:
request
- the requestresponse
- the responsecontext
- the context- Throws:
org.apache.hc.core5.http.HttpException
- in case of a problemIOException
- in case of an IO problem
-