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.DefaultHttpResponseParserLenient HTTP response parser implementation that can skip malformed data until a valid HTTP response message head is encountered.- Since:
- 4.2
-
-
Field Summary
Fields Modifier and Type Field Description private static org.slf4j.LoggerLOG
-
Constructor Summary
Constructors Constructor Description LenientHttpResponseParser(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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.apache.hc.core5.http.ClassicHttpResponsecreateMessage(org.apache.hc.core5.util.CharArrayBuffer buffer)
-
-
-
Constructor Detail
-
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. IfnullBasicLineParser.INSTANCEwill be used.responseFactory- HTTP response factory. IfnullDefaultClassicHttpResponseFactory.INSTANCEwill be used.h1Config- HTTP/1.1 parameters. Ifnull.Http1Config.DEFAULTwill 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.DEFAULTwill be used.- Since:
- 4.3
-
-