Uses of Interface
org.apache.http.params.HttpParams
Packages that use HttpParams
Package
Description
Core HTTP component APIs and primitives.
Default implementations of HTTP connections for synchronous,
blocking communication.
Default implementations of message parses and writers
for synchronous, blocking communication.
Default implementations of HTTP connections for asynchronous,
even driven communication.
Default implementations of message parses and writers
for asynchronous, even driven communication.
Default implementations of client side connection pools
for asynchronous, even driven communication.
Default implementation of event driven network communication APIs
based on Java NIO.
Default implementations of client side connection pools
for synchronous, blocking communication.
Core HTTP message components, message element parser
and writer APIs and their default implementations.
Deprecated.
Core HTTP protocol execution framework and HTTP protocol handlers
for asynchronous, event driven communication.
Deprecated.
Core HTTP protocol execution framework and HTTP protocol handlers
for synchronous, blocking communication.
-
Uses of HttpParams in org.apache.http
Methods in org.apache.http that return HttpParamsModifier and TypeMethodDescriptionHttpMessage.getParams()Deprecated.(4.3) use configuration classes provided 'org.apache.http.config' and 'org.apache.http.client.config'Methods in org.apache.http with parameters of type HttpParamsModifier and TypeMethodDescriptionvoidHttpMessage.setParams(HttpParams params) Deprecated.(4.3) use configuration classes provided 'org.apache.http.config' and 'org.apache.http.client.config' -
Uses of HttpParams in org.apache.http.impl
Methods in org.apache.http.impl with parameters of type HttpParamsModifier and TypeMethodDescriptionvoidDefaultHttpClientConnection.bind(Socket socket, HttpParams params) Deprecated.voidDefaultHttpServerConnection.bind(Socket socket, HttpParams params) Deprecated.protected voidSocketHttpClientConnection.bind(Socket socket, HttpParams params) Deprecated.Binds this connection to the givenSocket.protected voidSocketHttpServerConnection.bind(Socket socket, HttpParams params) Deprecated.Binds this connection to the givenSocket.protected HttpMessageParser<HttpRequest>AbstractHttpServerConnection.createRequestParser(SessionInputBuffer buffer, HttpRequestFactory requestFactory, HttpParams params) Deprecated.Creates an instance ofHttpMessageParserto be used for parsing HTTP requests received over this connection.protected HttpMessageWriter<HttpRequest>AbstractHttpClientConnection.createRequestWriter(SessionOutputBuffer buffer, HttpParams params) Deprecated.Creates an instance ofHttpMessageWriterto be used for writing out HTTP requests sent over this connection.protected HttpMessageParser<HttpResponse>AbstractHttpClientConnection.createResponseParser(SessionInputBuffer buffer, HttpResponseFactory responseFactory, HttpParams params) Deprecated.Creates an instance ofHttpMessageParserto be used for parsing HTTP responses received over this connection.protected HttpMessageWriter<HttpResponse>AbstractHttpServerConnection.createResponseWriter(SessionOutputBuffer buffer, HttpParams params) Deprecated.Creates an instance ofHttpMessageWriterto be used for writing out HTTP responses sent over this connection.protected SessionInputBufferSocketHttpClientConnection.createSessionInputBuffer(Socket socket, int bufferSize, HttpParams params) Deprecated.Creates an instance ofSocketInputBufferto be used for receiving data from the givenSocket.protected SessionInputBufferSocketHttpServerConnection.createSessionInputBuffer(Socket socket, int bufferSize, HttpParams params) Deprecated.Creates an instance ofSocketInputBufferto be used for receiving data from the givenSocket.protected SessionOutputBufferSocketHttpClientConnection.createSessionOutputBuffer(Socket socket, int bufferSize, HttpParams params) Deprecated.Creates an instance ofSessionOutputBufferto be used for sending data to the givenSocket.protected SessionOutputBufferSocketHttpServerConnection.createSessionOutputBuffer(Socket socket, int bufferSize, HttpParams params) Deprecated.Creates an instance ofSessionOutputBufferto be used for sending data to the givenSocket.protected voidAbstractHttpClientConnection.init(SessionInputBuffer sessionInputBuffer, SessionOutputBuffer sessionOutputBuffer, HttpParams params) Deprecated.Initializes this connection object withSessionInputBufferandSessionOutputBufferinstances to be used for sending and receiving data.protected voidAbstractHttpServerConnection.init(SessionInputBuffer inBuffer, SessionOutputBuffer outbuffer, HttpParams params) Deprecated.Initializes this connection object withSessionInputBufferandSessionOutputBufferinstances to be used for sending and receiving data. -
Uses of HttpParams in org.apache.http.impl.io
Methods in org.apache.http.impl.io with parameters of type HttpParamsModifier and TypeMethodDescriptionprotected voidAbstractSessionInputBuffer.init(InputStream inputStream, int bufferSize, HttpParams params) Deprecated.Initializes this session input buffer.protected voidAbstractSessionOutputBuffer.init(OutputStream outStream, int bufferSize, HttpParams params) Deprecated.Constructors in org.apache.http.impl.io with parameters of type HttpParamsModifierConstructorDescriptionAbstractMessageParser(SessionInputBuffer buffer, LineParser parser, HttpParams params) Deprecated.AbstractMessageWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.DefaultHttpRequestParser(SessionInputBuffer buffer, LineParser lineParser, HttpRequestFactory requestFactory, HttpParams params) DefaultHttpResponseParser(SessionInputBuffer buffer, LineParser lineParser, HttpResponseFactory responseFactory, HttpParams params) HttpRequestParser(SessionInputBuffer buffer, LineParser parser, HttpRequestFactory requestFactory, HttpParams params) Deprecated.Creates an instance of this class.HttpRequestWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.HttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params) Deprecated.Creates an instance of this class.HttpResponseWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.SocketInputBuffer(Socket socket, int bufferSize, HttpParams params) Deprecated.Creates an instance of this class.SocketOutputBuffer(Socket socket, int bufferSize, HttpParams params) Deprecated.Creates an instance of this class. -
Uses of HttpParams in org.apache.http.impl.nio
Fields in org.apache.http.impl.nio declared as HttpParamsModifier and TypeFieldDescriptionprotected final HttpParamsDefaultClientIOEventDispatch.paramsDeprecated.protected final HttpParamsDefaultServerIOEventDispatch.paramsDeprecated.protected final HttpParamsSSLClientIOEventDispatch.paramsDeprecated.protected final HttpParamsSSLServerIOEventDispatch.paramsDeprecated.Methods in org.apache.http.impl.nio with parameters of type HttpParamsModifier and TypeMethodDescriptionprotected DefaultNHttpClientConnectionDefaultNHttpClientConnectionFactory.createConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params) Deprecated.(4.3) no longer used.protected DefaultNHttpServerConnectionDefaultNHttpServerConnectionFactory.createConnection(IOSession session, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params) Deprecated.(4.3) no longer used.protected DefaultNHttpClientConnectionSSLNHttpClientConnectionFactory.createConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params) Deprecated.(4.3) no longer used.protected DefaultNHttpServerConnectionSSLNHttpServerConnectionFactory.createConnection(IOSession session, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params) Deprecated.(4.3) no longer used.protected NHttpMessageParser<HttpRequest>DefaultNHttpServerConnection.createRequestParser(SessionInputBuffer buffer, HttpRequestFactory requestFactory, HttpParams params) Deprecated.(4.3) use constructor.protected NHttpMessageWriter<HttpRequest>DefaultNHttpClientConnection.createRequestWriter(SessionOutputBuffer buffer, HttpParams params) Deprecated.(4.3) use constructor.protected NHttpMessageParser<HttpResponse>DefaultNHttpClientConnection.createResponseParser(SessionInputBuffer buffer, HttpResponseFactory responseFactory, HttpParams params) Deprecated.(4.3) use constructor.protected NHttpMessageWriter<HttpResponse>DefaultNHttpServerConnection.createResponseWriter(SessionOutputBuffer buffer, HttpParams params) Deprecated.(4.3) use constructor.Constructors in org.apache.http.impl.nio with parameters of type HttpParamsModifierConstructorDescriptionDefaultClientIOEventDispatch(NHttpClientHandler handler, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler.DefaultHttpClientIODispatch(H handler, SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) DefaultHttpClientIODispatch(H handler, SSLContext sslContext, HttpParams params) Deprecated.DefaultHttpClientIODispatch(H handler, HttpParams params) Deprecated.DefaultHttpServerIODispatch(H handler, SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) DefaultHttpServerIODispatch(H handler, SSLContext sslContext, HttpParams params) Deprecated.DefaultHttpServerIODispatch(H handler, HttpParams params) Deprecated.DefaultNHttpClientConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params) DefaultNHttpClientConnectionFactory(HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params) Deprecated.DefaultNHttpServerConnection(IOSession session, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params) DefaultNHttpServerConnectionFactory(HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params) Deprecated.DefaultServerIOEventDispatch(NHttpServiceHandler handler, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler.NHttpConnectionBase(IOSession session, ByteBufferAllocator allocator, HttpParams params) SSLClientIOEventDispatch(NHttpClientHandler handler, SSLContext sslContext, SSLIOSessionHandler sslHandler, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext.SSLClientIOEventDispatch(NHttpClientHandler handler, SSLContext sslContext, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext.SSLNHttpClientConnectionFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params) SSLNHttpClientConnectionFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) Deprecated.Deprecated.SSLNHttpServerConnectionFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params) SSLNHttpServerConnectionFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) Deprecated.Deprecated.SSLServerIOEventDispatch(NHttpServiceHandler handler, SSLContext sslContext, SSLIOSessionHandler sslHandler, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext.SSLServerIOEventDispatch(NHttpServiceHandler handler, SSLContext sslContext, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext. -
Uses of HttpParams in org.apache.http.impl.nio.codecs
Constructors in org.apache.http.impl.nio.codecs with parameters of type HttpParamsModifierConstructorDescriptionAbstractMessageParser(SessionInputBuffer buffer, LineParser lineParser, HttpParams params) Deprecated.AbstractMessageWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.DefaultHttpRequestParser(SessionInputBuffer buffer, LineParser parser, HttpRequestFactory requestFactory, HttpParams params) DefaultHttpRequestWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.DefaultHttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params) DefaultHttpResponseWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.HttpRequestParser(SessionInputBuffer buffer, LineParser parser, HttpRequestFactory requestFactory, HttpParams params) Deprecated.HttpRequestWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated.HttpResponseParser(SessionInputBuffer buffer, LineParser parser, HttpResponseFactory responseFactory, HttpParams params) Deprecated.HttpResponseWriter(SessionOutputBuffer buffer, LineFormatter formatter, HttpParams params) Deprecated. -
Uses of HttpParams in org.apache.http.impl.nio.pool
Constructors in org.apache.http.impl.nio.pool with parameters of type HttpParamsModifierConstructorDescriptionBasicNIOConnFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params) BasicNIOConnFactory(SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) Deprecated.BasicNIOConnFactory(HttpParams params) Deprecated.(4.3) useBasicNIOConnFactory(ConnectionConfig)BasicNIOConnPool(ConnectingIOReactor ioReactor, NIOConnFactory<HttpHost, NHttpClientConnection> connFactory, HttpParams params) Deprecated.BasicNIOConnPool(ConnectingIOReactor ioReactor, HttpParams params) Deprecated. -
Uses of HttpParams in org.apache.http.impl.nio.reactor
Fields in org.apache.http.impl.nio.reactor declared as HttpParamsModifier and TypeFieldDescriptionprotected final HttpParamsAbstractMultiworkerIOReactor.paramsDeprecated.(4.2)private HttpParamsSSLIOSessionHandlerAdaptor.paramsDeprecated.private HttpParamsSSLSetupHandlerAdaptor.paramsDeprecated.Methods in org.apache.http.impl.nio.reactor with parameters of type HttpParamsModifier and TypeMethodDescriptionvoidSSLIOSession.bind(SSLMode mode, HttpParams params) Deprecated.(package private) static IOReactorConfigAbstractMultiworkerIOReactor.convert(int workerCount, HttpParams params) Deprecated.Do not use.voidSSLIOSessionHandler.initalize(SSLEngine sslengine, HttpParams params) Deprecated.Triggered when the SSL connection is being initialized.voidSSLSetupHandler.initalize(SSLEngine sslengine, HttpParams params) Deprecated.Triggered when the SSL connection is being initialized.voidSessionOutputBufferImpl.reset(HttpParams params) voidSSLIOSessionHandlerAdaptor.setParams(HttpParams params) Deprecated.voidSSLSetupHandlerAdaptor.setParams(HttpParams params) Deprecated.Constructors in org.apache.http.impl.nio.reactor with parameters of type HttpParamsModifierConstructorDescriptionAbstractMultiworkerIOReactor(int workerCount, ThreadFactory threadFactory, HttpParams params) Deprecated.DefaultConnectingIOReactor(int workerCount, ThreadFactory threadFactory, HttpParams params) Deprecated.DefaultConnectingIOReactor(int workerCount, HttpParams params) Deprecated.DefaultListeningIOReactor(int workerCount, ThreadFactory threadFactory, HttpParams params) Deprecated.DefaultListeningIOReactor(int workerCount, HttpParams params) Deprecated.SessionInputBufferImpl(int bufferSize, int lineBufferSize, ByteBufferAllocator allocator, HttpParams params) Deprecated.SessionInputBufferImpl(int bufferSize, int lineBufferSize, HttpParams params) Deprecated.SessionOutputBufferImpl(int bufferSize, int lineBufferSize, ByteBufferAllocator allocator, HttpParams params) Deprecated.SessionOutputBufferImpl(int bufferSize, int lineBufferSize, HttpParams params) Deprecated. -
Uses of HttpParams in org.apache.http.impl.nio.ssl
Constructors in org.apache.http.impl.nio.ssl with parameters of type HttpParamsModifierConstructorDescriptionSSLClientIOEventDispatch(NHttpClientHandler handler, SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext.SSLClientIOEventDispatch(NHttpClientHandler handler, SSLContext sslContext, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext.SSLServerIOEventDispatch(NHttpServiceHandler handler, SSLContext sslContext, SSLSetupHandler sslHandler, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext.SSLServerIOEventDispatch(NHttpServiceHandler handler, SSLContext sslContext, HttpParams params) Deprecated.Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the givenSSLContext. -
Uses of HttpParams in org.apache.http.impl.pool
Methods in org.apache.http.impl.pool with parameters of type HttpParamsModifier and TypeMethodDescriptionprotected HttpClientConnectionBasicConnFactory.create(Socket socket, HttpParams params) Deprecated.(4.3) no longer used.Constructors in org.apache.http.impl.pool with parameters of type HttpParamsModifierConstructorDescriptionBasicConnFactory(SSLSocketFactory sslfactory, HttpParams params) Deprecated.BasicConnFactory(HttpParams params) Deprecated.BasicConnPool(HttpParams params) Deprecated. -
Uses of HttpParams in org.apache.http.message
Fields in org.apache.http.message declared as HttpParamsModifier and TypeFieldDescriptionprotected HttpParamsAbstractHttpMessage.paramsDeprecated.Do not use.Methods in org.apache.http.message that return HttpParamsModifier and TypeMethodDescriptionAbstractHttpMessage.getParams()Deprecated.(4.3) use constructor parameters of configuration API provided by HttpClientMethods in org.apache.http.message with parameters of type HttpParamsModifier and TypeMethodDescriptionvoidAbstractHttpMessage.setParams(HttpParams params) Deprecated.(4.3) use constructor parameters of configuration API provided by HttpClientConstructors in org.apache.http.message with parameters of type HttpParamsModifierConstructorDescriptionprotectedAbstractHttpMessage(HttpParams params) Deprecated.(4.3) useAbstractHttpMessage() -
Uses of HttpParams in org.apache.http.nio.params
Methods in org.apache.http.nio.params with parameters of type HttpParamsModifier and TypeMethodDescriptionstatic intNIOReactorParams.getContentBufferSize(HttpParams params) Deprecated.Obtains the value ofNIOReactorPNames.CONTENT_BUFFER_SIZEparameter.static longNIOReactorParams.getGracePeriod(HttpParams params) Deprecated.Obtains the value ofNIOReactorPNames.GRACE_PERIODparameter.static booleanNIOReactorParams.getInterestOpsQueueing(HttpParams params) Deprecated.Obtains the value ofNIOReactorPNames.INTEREST_OPS_QUEUEINGparameter.static longNIOReactorParams.getSelectInterval(HttpParams params) Deprecated.Obtains the value ofNIOReactorPNames.SELECT_INTERVALparameter.static voidNIOReactorParams.setContentBufferSize(HttpParams params, int size) Deprecated.Sets value of theNIOReactorPNames.CONTENT_BUFFER_SIZEparameter.static voidNIOReactorParams.setGracePeriod(HttpParams params, long ms) Deprecated.Sets value of theNIOReactorPNames.GRACE_PERIODparameter.static voidNIOReactorParams.setInterestOpsQueueing(HttpParams params, boolean interestOpsQueueing) Deprecated.Sets value of theNIOReactorPNames.INTEREST_OPS_QUEUEINGparameter.static voidNIOReactorParams.setSelectInterval(HttpParams params, long ms) Deprecated.Sets value of theNIOReactorPNames.SELECT_INTERVALparameter.Constructors in org.apache.http.nio.params with parameters of type HttpParams -
Uses of HttpParams in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as HttpParamsMethods in org.apache.http.nio.protocol that return HttpParamsConstructors in org.apache.http.nio.protocol with parameters of type HttpParamsModifierConstructorDescriptionAsyncNHttpClientHandler(HttpProcessor httpProcessor, NHttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params) Deprecated.AsyncNHttpClientHandler(HttpProcessor httpProcessor, NHttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, HttpParams params) Deprecated.AsyncNHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params) Deprecated.AsyncNHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, HttpParams params) Deprecated.BasicAsyncRequestExecutionHandler(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, FutureCallback<T> callback, HttpContext localContext, HttpProcessor httpPocessor, ConnectionReuseStrategy reuseStrategy, HttpParams params) Deprecated.BasicAsyncRequestExecutionHandler(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, HttpContext localContext, HttpProcessor httpPocessor, ConnectionReuseStrategy reuseStrategy, HttpParams params) Deprecated.BufferingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params) Deprecated.BufferingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, HttpParams params) Deprecated.BufferingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params) Deprecated.BufferingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, HttpParams params) Deprecated.HttpAsyncRequester(HttpProcessor httpprocessor, ConnectionReuseStrategy reuseStrategy, HttpParams params) Deprecated.HttpAsyncService(HttpProcessor httpProcessor, ConnectionReuseStrategy connStrategy, HttpResponseFactory responseFactory, HttpAsyncRequestHandlerResolver handlerResolver, HttpAsyncExpectationVerifier expectationVerifier, HttpParams params) HttpAsyncService(HttpProcessor httpProcessor, ConnectionReuseStrategy connStrategy, HttpAsyncRequestHandlerResolver handlerResolver, HttpParams params) NHttpHandlerBase(HttpProcessor httpProcessor, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params) Deprecated.ThrottlingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, Executor executor, HttpParams params) Deprecated.ThrottlingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, Executor executor, HttpParams params) Deprecated.ThrottlingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, Executor executor, HttpParams params) Deprecated.ThrottlingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, Executor executor, HttpParams params) Deprecated. -
Uses of HttpParams in org.apache.http.params
Classes in org.apache.http.params that implement HttpParamsModifier and TypeClassDescriptionclassDeprecated.(4.3) use configuration classes provided 'org.apache.http.config' and 'org.apache.http.client.config'classDeprecated.(4.3) use configuration classes provided 'org.apache.http.config' and 'org.apache.http.client.config'final classDeprecated.(4.3) use configuration classes provided 'org.apache.http.config' and 'org.apache.http.client.config'classDeprecated.(4.3) use configuration classes provided 'org.apache.http.config' and 'org.apache.http.client.config'Fields in org.apache.http.params declared as HttpParamsModifier and TypeFieldDescriptionprivate final HttpParamsDefaultedHttpParams.defaultsDeprecated.private final HttpParamsDefaultedHttpParams.localDeprecated.protected final HttpParamsHttpAbstractParamBean.paramsDeprecated.Methods in org.apache.http.params that return HttpParamsModifier and TypeMethodDescriptionBasicHttpParams.copy()Deprecated.Creates a copy of these parameters.DefaultedHttpParams.copy()Deprecated.Creates a copy of the local collection with the same defaultHttpParams.copy()Deprecated.Creates a copy of these parameters.DefaultedHttpParams.getDefaults()Deprecated.AbstractHttpParams.setBooleanParameter(String name, boolean value) Deprecated.HttpParams.setBooleanParameter(String name, boolean value) Deprecated.Assigns aBooleanto the parameter with the given nameAbstractHttpParams.setDoubleParameter(String name, double value) Deprecated.HttpParams.setDoubleParameter(String name, double value) Deprecated.Assigns aDoubleto the parameter with the given nameAbstractHttpParams.setIntParameter(String name, int value) Deprecated.HttpParams.setIntParameter(String name, int value) Deprecated.Assigns anIntegerto the parameter with the given nameAbstractHttpParams.setLongParameter(String name, long value) Deprecated.HttpParams.setLongParameter(String name, long value) Deprecated.Assigns aLongto the parameter with the given nameBasicHttpParams.setParameter(String name, Object value) Deprecated.DefaultedHttpParams.setParameter(String name, Object value) Deprecated.Sets the parameter in the local collection.HttpParams.setParameter(String name, Object value) Deprecated.Assigns the value to the parameter with the given name.SyncBasicHttpParams.setParameter(String name, Object value) Deprecated.Methods in org.apache.http.params with parameters of type HttpParamsModifier and TypeMethodDescriptionvoidBasicHttpParams.copyParams(HttpParams target) Deprecated.Copies the locally defined parameters to the argument parameters.static ConnectionConfigHttpParamConfig.getConnectionConfig(HttpParams params) Deprecated.static intHttpConnectionParams.getConnectionTimeout(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.CONNECTION_TIMEOUTparameter.static StringHttpProtocolParams.getContentCharset(HttpParams params) Deprecated.Obtains value of theCoreProtocolPNames.HTTP_CONTENT_CHARSETparameter.static StringHttpProtocolParams.getHttpElementCharset(HttpParams params) Deprecated.Obtains value of theCoreProtocolPNames.HTTP_ELEMENT_CHARSETparameter.static intHttpConnectionParams.getLinger(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.SO_LINGERparameter.static CodingErrorActionHttpProtocolParams.getMalformedInputAction(HttpParams params) Deprecated.Obtains value of theCoreProtocolPNames.HTTP_MALFORMED_INPUT_ACTIONparameter.static MessageConstraintsHttpParamConfig.getMessageConstraints(HttpParams params) Deprecated.DefaultedHttpParams.getNames(HttpParams params) Deprecated.static intHttpConnectionParams.getSocketBufferSize(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.SOCKET_BUFFER_SIZEparameter.static SocketConfigHttpParamConfig.getSocketConfig(HttpParams params) Deprecated.static booleanHttpConnectionParams.getSoKeepalive(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.SO_KEEPALIVEparameter.static booleanHttpConnectionParams.getSoReuseaddr(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.SO_REUSEADDRparameter.static intHttpConnectionParams.getSoTimeout(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.SO_TIMEOUTparameter.static booleanHttpConnectionParams.getTcpNoDelay(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.TCP_NODELAYparameter.static CodingErrorActionHttpProtocolParams.getUnmappableInputAction(HttpParams params) Deprecated.Obtains the value of theCoreProtocolPNames.HTTP_UNMAPPABLE_INPUT_ACTIONparameter.static StringHttpProtocolParams.getUserAgent(HttpParams params) Deprecated.Obtains value of theCoreProtocolPNames.USER_AGENTparameter.static ProtocolVersionHttpProtocolParams.getVersion(HttpParams params) Deprecated.Obtains value of theCoreProtocolPNames.PROTOCOL_VERSIONparameter.static booleanHttpConnectionParams.isStaleCheckingEnabled(HttpParams params) Deprecated.Obtains value of theCoreConnectionPNames.STALE_CONNECTION_CHECKparameter.static voidHttpConnectionParams.setConnectionTimeout(HttpParams params, int timeout) Deprecated.Sets value of theCoreConnectionPNames.CONNECTION_TIMEOUTparameter.static voidHttpProtocolParams.setContentCharset(HttpParams params, String charset) Deprecated.Sets value of theCoreProtocolPNames.HTTP_CONTENT_CHARSETparameter.static voidHttpProtocolParams.setHttpElementCharset(HttpParams params, String charset) Deprecated.Sets value of theCoreProtocolPNames.HTTP_ELEMENT_CHARSETparameter.static voidHttpConnectionParams.setLinger(HttpParams params, int value) Deprecated.Sets value of theCoreConnectionPNames.SO_LINGERparameter.static voidHttpProtocolParams.setMalformedInputAction(HttpParams params, CodingErrorAction action) Deprecated.Sets value of theCoreProtocolPNames.HTTP_MALFORMED_INPUT_ACTIONparameter.static voidHttpConnectionParams.setSocketBufferSize(HttpParams params, int size) Deprecated.Sets value of theCoreConnectionPNames.SOCKET_BUFFER_SIZEparameter.static voidHttpConnectionParams.setSoKeepalive(HttpParams params, boolean enableKeepalive) Deprecated.Sets value of theCoreConnectionPNames.SO_KEEPALIVEparameter.static voidHttpConnectionParams.setSoReuseaddr(HttpParams params, boolean reuseaddr) Deprecated.Sets value of theCoreConnectionPNames.SO_REUSEADDRparameter.static voidHttpConnectionParams.setSoTimeout(HttpParams params, int timeout) Deprecated.Sets value of theCoreConnectionPNames.SO_TIMEOUTparameter.static voidHttpConnectionParams.setStaleCheckingEnabled(HttpParams params, boolean value) Deprecated.Sets value of theCoreConnectionPNames.STALE_CONNECTION_CHECKparameter.static voidHttpConnectionParams.setTcpNoDelay(HttpParams params, boolean value) Deprecated.Sets value of theCoreConnectionPNames.TCP_NODELAYparameter.static voidHttpProtocolParams.setUnmappableInputAction(HttpParams params, CodingErrorAction action) Deprecated.Sets the value of theCoreProtocolPNames.HTTP_UNMAPPABLE_INPUT_ACTIONparameter.static voidHttpProtocolParams.setUseExpectContinue(HttpParams params, boolean b) Deprecated.Sets value of theCoreProtocolPNames.USE_EXPECT_CONTINUEparameter.static voidHttpProtocolParams.setUserAgent(HttpParams params, String useragent) Deprecated.Sets value of theCoreProtocolPNames.USER_AGENTparameter.static voidHttpProtocolParams.setVersion(HttpParams params, ProtocolVersion version) Deprecated.Sets value of theCoreProtocolPNames.PROTOCOL_VERSIONparameter.static booleanHttpProtocolParams.useExpectContinue(HttpParams params) Deprecated.Obtains value of theCoreProtocolPNames.USE_EXPECT_CONTINUEparameter.Constructors in org.apache.http.params with parameters of type HttpParamsModifierConstructorDescriptionDefaultedHttpParams(HttpParams local, HttpParams defaults) Deprecated.Create the defaulted set of HttpParams.HttpAbstractParamBean(HttpParams params) Deprecated.HttpConnectionParamBean(HttpParams params) Deprecated.HttpProtocolParamBean(HttpParams params) Deprecated. -
Uses of HttpParams in org.apache.http.protocol
Fields in org.apache.http.protocol declared as HttpParamsModifier and TypeFieldDescriptionprivate HttpParamsHttpService.paramsTODO: make all variables final in the next major versionMethods in org.apache.http.protocol that return HttpParamsMethods in org.apache.http.protocol with parameters of type HttpParamsModifier and TypeMethodDescriptionvoidHttpService.setParams(HttpParams params) Deprecated.(4.1) setHttpResponseFactoryusing constructorConstructors in org.apache.http.protocol with parameters of type HttpParamsModifierConstructorDescriptionHttpService(HttpProcessor processor, ConnectionReuseStrategy connStrategy, HttpResponseFactory responseFactory, HttpRequestHandlerResolver handlerResolver, HttpParams params) HttpService(HttpProcessor processor, ConnectionReuseStrategy connStrategy, HttpResponseFactory responseFactory, HttpRequestHandlerResolver handlerResolver, HttpExpectationVerifier expectationVerifier, HttpParams params)