Uses of Interface
org.apache.http.HttpResponseFactory
-
Packages that use HttpResponseFactory Package Description org.apache.http.impl Default implementations of HTTP connections for synchronous, blocking communication.org.apache.http.impl.bootstrap Embedded server and server bootstrap.org.apache.http.impl.io Default implementations of message parses and writers for synchronous, blocking communication.org.apache.http.impl.nio Default implementations of HTTP connections for asynchronous, even driven communication.org.apache.http.impl.nio.bootstrap Embedded non-blocking server and server bootstrap.org.apache.http.impl.nio.codecs Default implementations of message parses and writers for asynchronous, even driven communication.org.apache.http.impl.nio.pool Default implementations of client side connection pools for asynchronous, even driven communication.org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication.org.apache.http.protocol Core HTTP protocol execution framework and HTTP protocol handlers for synchronous, blocking communication. -
-
Uses of HttpResponseFactory in org.apache.http.impl
Classes in org.apache.http.impl that implement HttpResponseFactory Modifier and Type Class Description class
DefaultHttpResponseFactory
Default factory for creatingHttpResponse
objects.Methods in org.apache.http.impl that return HttpResponseFactory Modifier and Type Method Description protected HttpResponseFactory
AbstractHttpClientConnection. createHttpResponseFactory()
Deprecated.Creates an instance ofDefaultHttpResponseFactory
to be used for creatingHttpResponse
objects received by over this connection.Methods in org.apache.http.impl with parameters of type HttpResponseFactory Modifier and Type Method Description protected HttpMessageParser<HttpResponse>
AbstractHttpClientConnection. createResponseParser(SessionInputBuffer buffer, HttpResponseFactory responseFactory, HttpParams params)
Deprecated.Creates an instance ofHttpMessageParser
to be used for parsing HTTP responses received over this connection. -
Uses of HttpResponseFactory in org.apache.http.impl.bootstrap
Fields in org.apache.http.impl.bootstrap declared as HttpResponseFactory Modifier and Type Field Description private HttpResponseFactory
ServerBootstrap. responseFactory
Methods in org.apache.http.impl.bootstrap with parameters of type HttpResponseFactory Modifier and Type Method Description ServerBootstrap
ServerBootstrap. setResponseFactory(HttpResponseFactory responseFactory)
AssignsHttpResponseFactory
instance. -
Uses of HttpResponseFactory in org.apache.http.impl.io
Fields in org.apache.http.impl.io declared as HttpResponseFactory Modifier and Type Field Description private HttpResponseFactory
DefaultHttpResponseParser. responseFactory
private HttpResponseFactory
DefaultHttpResponseParserFactory. responseFactory
private HttpResponseFactory
HttpResponseParser. responseFactory
Deprecated.Constructors in org.apache.http.impl.io with parameters of type HttpResponseFactory Constructor Description DefaultHttpResponseParser(SessionInputBuffer buffer, LineParser lineParser, HttpResponseFactory responseFactory, MessageConstraints constraints)
Creates new instance of DefaultHttpResponseParser.DefaultHttpResponseParser(SessionInputBuffer buffer, LineParser lineParser, HttpResponseFactory responseFactory, HttpParams params)
DefaultHttpResponseParserFactory(LineParser lineParser, HttpResponseFactory responseFactory)
HttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params)
Deprecated.Creates an instance of this class. -
Uses of HttpResponseFactory in org.apache.http.impl.nio
Methods in org.apache.http.impl.nio that return HttpResponseFactory Modifier and Type Method Description protected HttpResponseFactory
DefaultClientIOEventDispatch. createHttpResponseFactory()
Deprecated.Creates an instance ofDefaultHttpResponseFactory
to be used by HTTP connections for creatingHttpResponse
objects.protected HttpResponseFactory
SSLClientIOEventDispatch. createHttpResponseFactory()
Deprecated.Creates an instance ofDefaultHttpResponseFactory
to be used by HTTP connections for creatingHttpResponse
objects.Methods in org.apache.http.impl.nio with parameters of type HttpResponseFactory Modifier and Type Method Description protected DefaultNHttpClientConnection
DefaultNHttpClientConnectionFactory. createConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
Deprecated.(4.3) no longer used.protected DefaultNHttpClientConnection
SSLNHttpClientConnectionFactory. createConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
Deprecated.(4.3) no longer used.protected NHttpMessageParser<HttpResponse>
DefaultNHttpClientConnection. createResponseParser(SessionInputBuffer buffer, HttpResponseFactory responseFactory, HttpParams params)
Deprecated.(4.3) use constructor.Constructors in org.apache.http.impl.nio with parameters of type HttpResponseFactory Constructor Description DefaultNHttpClientConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
DefaultNHttpClientConnectionFactory(HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
SSLNHttpClientConnectionFactory(javax.net.ssl.SSLContext sslContext, SSLSetupHandler sslHandler, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
-
Uses of HttpResponseFactory in org.apache.http.impl.nio.bootstrap
Fields in org.apache.http.impl.nio.bootstrap declared as HttpResponseFactory Modifier and Type Field Description private HttpResponseFactory
ServerBootstrap. responseFactory
Methods in org.apache.http.impl.nio.bootstrap with parameters of type HttpResponseFactory Modifier and Type Method Description ServerBootstrap
ServerBootstrap. setResponseFactory(HttpResponseFactory responseFactory)
AssignsHttpResponseFactory
instance. -
Uses of HttpResponseFactory in org.apache.http.impl.nio.codecs
Fields in org.apache.http.impl.nio.codecs declared as HttpResponseFactory Modifier and Type Field Description private HttpResponseFactory
DefaultHttpResponseParser. responseFactory
private HttpResponseFactory
DefaultHttpResponseParserFactory. responseFactory
private HttpResponseFactory
HttpResponseParser. responseFactory
Deprecated.Constructors in org.apache.http.impl.nio.codecs with parameters of type HttpResponseFactory Constructor Description DefaultHttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, MessageConstraints constraints)
Creates an instance of DefaultHttpResponseParser.DefaultHttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params)
DefaultHttpResponseParserFactory(LineParser lineParser, HttpResponseFactory responseFactory)
HttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params)
Deprecated. -
Uses of HttpResponseFactory in org.apache.http.impl.nio.pool
Constructors in org.apache.http.impl.nio.pool with parameters of type HttpResponseFactory Constructor Description BasicNIOConnFactory(javax.net.ssl.SSLContext sslContext, SSLSetupHandler sslHandler, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
-
Uses of HttpResponseFactory in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as HttpResponseFactory Modifier and Type Field Description protected HttpResponseFactory
AsyncNHttpServiceHandler. responseFactory
Deprecated.private HttpResponseFactory
HttpAsyncService. responseFactory
protected HttpResponseFactory
ThrottlingHttpServiceHandler. responseFactory
Deprecated.Methods in org.apache.http.nio.protocol that return HttpResponseFactory Modifier and Type Method Description HttpResponseFactory
HttpAsyncService. getResponseFactory()
Gets the HttpResponseFactory for this service. -
Uses of HttpResponseFactory in org.apache.http.protocol
Fields in org.apache.http.protocol declared as HttpResponseFactory Modifier and Type Field Description private HttpResponseFactory
HttpService. responseFactory
Methods in org.apache.http.protocol with parameters of type HttpResponseFactory Modifier and Type Method Description void
HttpService. setResponseFactory(HttpResponseFactory responseFactory)
Deprecated.(4.1) setHttpResponseFactory
using constructor
-