Class LenientHttpResponseParser
java.lang.Object
org.apache.hc.core5.http.impl.io.AbstractMessageParser<org.apache.hc.core5.http.ClassicHttpResponse>
org.apache.hc.core5.http.impl.io.DefaultHttpResponseParser
org.apache.hc.client5.http.impl.io.LenientHttpResponseParser
- All Implemented Interfaces:
org.apache.hc.core5.http.io.HttpMessageParser<org.apache.hc.core5.http.ClassicHttpResponse>
public class LenientHttpResponseParser
extends org.apache.hc.core5.http.impl.io.DefaultHttpResponseParser
Lenient HTTP response parser implementation that can skip malformed data until
a valid HTTP response message head is encountered.
- Since:
- 4.2
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLenientHttpResponseParser
(org.apache.hc.core5.http.config.Http1Config h1Config) Creates new instance of DefaultHttpResponseParser.LenientHttpResponseParser
(org.apache.hc.core5.http.message.LineParser lineParser, org.apache.hc.core5.http.HttpResponseFactory<org.apache.hc.core5.http.ClassicHttpResponse> responseFactory, org.apache.hc.core5.http.config.Http1Config h1Config) Creates new instance of DefaultHttpResponseParser. -
Method Summary
Modifier and TypeMethodDescriptionprotected org.apache.hc.core5.http.ClassicHttpResponse
createMessage
(org.apache.hc.core5.util.CharArrayBuffer buffer) Methods inherited from class org.apache.hc.core5.http.impl.io.AbstractMessageParser
createConnectionClosedException, parse, parseHeaders, parseHeaders
-
Field Details
-
LOG
private static final org.slf4j.Logger LOG
-
-
Constructor Details
-
LenientHttpResponseParser
public LenientHttpResponseParser(org.apache.hc.core5.http.message.LineParser lineParser, org.apache.hc.core5.http.HttpResponseFactory<org.apache.hc.core5.http.ClassicHttpResponse> responseFactory, org.apache.hc.core5.http.config.Http1Config h1Config) Creates new instance of DefaultHttpResponseParser.- Parameters:
lineParser
- the line parser. Ifnull
BasicLineParser.INSTANCE
will be used.responseFactory
- HTTP response factory. Ifnull
DefaultClassicHttpResponseFactory.INSTANCE
will be used.h1Config
- HTTP/1.1 parameters. Ifnull
.Http1Config.DEFAULT
will be used.- Since:
- 4.3
-
LenientHttpResponseParser
public LenientHttpResponseParser(org.apache.hc.core5.http.config.Http1Config h1Config) Creates new instance of DefaultHttpResponseParser.- Parameters:
h1Config
- HTTP/1.1 parameters. Ifnull
.Http1Config.DEFAULT
will be used.- Since:
- 4.3
-
-
Method Details
-
createMessage
protected org.apache.hc.core5.http.ClassicHttpResponse createMessage(org.apache.hc.core5.util.CharArrayBuffer buffer) throws IOException - Overrides:
createMessage
in classorg.apache.hc.core5.http.impl.io.DefaultHttpResponseParser
- Throws:
IOException
-