Uses of Interface
org.apache.http.params.HttpParams

Packages that use HttpParams
org.apache.http The core interfaces and classes of the HTTP components. 
org.apache.http.impl Default implementations for interfaces in org.apache.http
org.apache.http.impl.io Default implementations for interfaces in org.apache.http.io
org.apache.http.impl.nio   
org.apache.http.impl.nio.codecs   
org.apache.http.impl.nio.reactor NIO based implementations of HttpCore interfaces. 
org.apache.http.message A selection of HTTP message implementations. 
org.apache.http.nio.params   
org.apache.http.nio.protocol   
org.apache.http.params The parameterization framework for HTTP components. 
org.apache.http.protocol HTTP protocol execution framework. 
 

Uses of HttpParams in org.apache.http
 

Methods in org.apache.http that return HttpParams
 HttpParams HttpMessage.getParams()
          Returns the parameters effective for this message as set by
 

Methods in org.apache.http with parameters of type HttpParams
 void HttpMessage.setParams(HttpParams params)
          Provides parameters to be used for the processing of this message.
 

Uses of HttpParams in org.apache.http.impl
 

Methods in org.apache.http.impl with parameters of type HttpParams
protected  void SocketHttpClientConnection.bind(java.net.Socket socket, HttpParams params)
           
protected  void SocketHttpServerConnection.bind(java.net.Socket socket, HttpParams params)
           
 void DefaultHttpClientConnection.bind(java.net.Socket socket, HttpParams params)
           
 void DefaultHttpServerConnection.bind(java.net.Socket socket, HttpParams params)
           
protected  HttpDataReceiver SocketHttpClientConnection.createHttpDataReceiver(java.net.Socket socket, int buffersize, HttpParams params)
           
protected  HttpDataReceiver SocketHttpServerConnection.createHttpDataReceiver(java.net.Socket socket, int buffersize, HttpParams params)
           
protected  HttpDataTransmitter SocketHttpClientConnection.createHttpDataTransmitter(java.net.Socket socket, int buffersize, HttpParams params)
           
protected  HttpDataTransmitter SocketHttpServerConnection.createHttpDataTransmitter(java.net.Socket socket, int buffersize, HttpParams params)
           
protected  void AbstractHttpClientConnection.init(HttpDataReceiver datareceiver, HttpDataTransmitter datatransmitter, HttpParams params)
           
protected  void AbstractHttpServerConnection.init(HttpDataReceiver datareceiver, HttpDataTransmitter datatransmitter, HttpParams params)
           
 

Uses of HttpParams in org.apache.http.impl.io
 

Methods in org.apache.http.impl.io with parameters of type HttpParams
protected  void AbstractHttpDataReceiver.init(java.io.InputStream instream, int buffersize, HttpParams params)
           
protected  void AbstractHttpDataTransmitter.init(java.io.OutputStream outstream, int buffersize, HttpParams params)
           
 

Constructors in org.apache.http.impl.io with parameters of type HttpParams
SocketHttpDataReceiver(java.net.Socket socket, int buffersize, HttpParams params)
           
SocketHttpDataTransmitter(java.net.Socket socket, int buffersize, HttpParams params)
           
 

Uses of HttpParams in org.apache.http.impl.nio
 

Constructors in org.apache.http.impl.nio with parameters of type HttpParams
DefaultClientIOEventDispatch(NHttpClientHandler handler, ByteBufferAllocator allocator, HttpParams params)
           
DefaultClientIOEventDispatch(NHttpClientHandler handler, HttpParams params)
           
DefaultNHttpClientConnection(IOSession session, HttpResponseFactory responseFactory, ByteBufferAllocator allocator, HttpParams params)
           
DefaultNHttpServerConnection(IOSession session, HttpRequestFactory requestFactory, ByteBufferAllocator allocator, HttpParams params)
           
DefaultServerIOEventDispatch(NHttpServiceHandler handler, ByteBufferAllocator allocator, HttpParams params)
           
DefaultServerIOEventDispatch(NHttpServiceHandler handler, HttpParams params)
           
NHttpConnectionBase(IOSession session, ByteBufferAllocator allocator, HttpParams params)
           
 

Uses of HttpParams in org.apache.http.impl.nio.codecs
 

Constructors in org.apache.http.impl.nio.codecs with parameters of type HttpParams
HttpMessageParser(SessionInputBuffer buffer, HttpParams params)
           
HttpRequestParser(SessionInputBuffer buffer, HttpRequestFactory requestFactory, HttpParams params)
           
HttpResponseParser(SessionInputBuffer buffer, HttpResponseFactory responseFactory, HttpParams params)
           
 

Uses of HttpParams in org.apache.http.impl.nio.reactor
 

Methods in org.apache.http.impl.nio.reactor with parameters of type HttpParams
 void SSLIOSession.bind(SSLMode mode, HttpParams params)
           
 void SSLIOSessionHandler.initalize(javax.net.ssl.SSLEngine sslengine, HttpParams params)
           
 void SessionInputBuffer.reset(HttpParams params)
           
 void SessionOutputBuffer.reset(HttpParams params)
           
 

Constructors in org.apache.http.impl.nio.reactor with parameters of type HttpParams
DefaultConnectingIOReactor(int workerCount, HttpParams params)
           
DefaultConnectingIOReactor(int workerCount, ThreadFactory threadFactory, HttpParams params)
           
DefaultListeningIOReactor(int workerCount, HttpParams params)
           
DefaultListeningIOReactor(int workerCount, ThreadFactory threadFactory, HttpParams params)
           
SSLClientIOEventDispatch(NHttpClientHandler handler, javax.net.ssl.SSLContext sslcontext, HttpParams params)
           
SSLClientIOEventDispatch(NHttpClientHandler handler, javax.net.ssl.SSLContext sslcontext, SSLIOSessionHandler sslHandler, ByteBufferAllocator allocator, HttpParams params)
           
SSLServerIOEventDispatch(NHttpServiceHandler handler, javax.net.ssl.SSLContext sslcontext, HttpParams params)
           
SSLServerIOEventDispatch(NHttpServiceHandler handler, javax.net.ssl.SSLContext sslcontext, SSLIOSessionHandler sslHandler, ByteBufferAllocator allocator, HttpParams params)
           
 

Uses of HttpParams in org.apache.http.message
 

Methods in org.apache.http.message that return HttpParams
 HttpParams AbstractHttpMessage.getParams()
           
 

Methods in org.apache.http.message with parameters of type HttpParams
 void AbstractHttpMessage.setParams(HttpParams params)
           
 

Uses of HttpParams in org.apache.http.nio.params
 

Methods in org.apache.http.nio.params with parameters of type HttpParams
static int HttpNIOParams.getContentBufferSize(HttpParams params)
           
static long HttpNIOParams.getSelectInterval(HttpParams params)
           
static void HttpNIOParams.setContentBufferSize(HttpParams params, int size)
           
static void HttpNIOParams.setSelectInterval(HttpParams params, long ms)
           
 

Uses of HttpParams in org.apache.http.nio.protocol
 

Fields in org.apache.http.nio.protocol declared as HttpParams
protected  HttpParams NHttpHandlerBase.params
           
 

Methods in org.apache.http.nio.protocol that return HttpParams
 HttpParams NHttpHandlerBase.getParams()
           
 

Constructors in org.apache.http.nio.protocol with parameters of type HttpParams
BufferingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params)
           
BufferingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, HttpParams params)
           
BufferingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params)
           
BufferingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, HttpParams params)
           
NHttpClientHandlerBase(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params)
           
NHttpHandlerBase(HttpProcessor httpProcessor, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params)
           
NHttpServiceHandlerBase(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, HttpParams params)
           
NHttpServiceHandlerBase(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, HttpParams params)
           
ThrottlingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, Executor executor, HttpParams params)
           
ThrottlingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, Executor executor, HttpParams params)
           
ThrottlingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, Executor executor, HttpParams params)
           
ThrottlingHttpServiceHandler(HttpProcessor httpProcessor, HttpResponseFactory responseFactory, ConnectionReuseStrategy connStrategy, Executor executor, HttpParams params)
           
 

Uses of HttpParams in org.apache.http.params
 

Subinterfaces of HttpParams in org.apache.http.params
 interface HttpLinkedParams
          Represents a collection of HTTP protocol and framework parameters that can be linked with another one to form a parameter hierarchy.
 

Classes in org.apache.http.params that implement HttpParams
 class AbstractHttpParams
          Abstract base class for parameter collections.
 class BasicHttpParams
          This class represents a collection of HTTP protocol parameters.
 

Fields in org.apache.http.params declared as HttpParams
protected  HttpParams BasicHttpParams.defaults
          The optional set of default values to defer to.
 

Methods in org.apache.http.params that return HttpParams
 HttpParams HttpParams.copy()
          Creates a copy of these parameters.
 HttpParams BasicHttpParams.copy()
          Creates a copy of these parameters.
 HttpParams HttpLinkedParams.getDefaults()
          WARNING: This method is not part of the API.
 HttpParams BasicHttpParams.getDefaults()
          Obtains default parameters, if set.
 HttpParams HttpParams.setBooleanParameter(java.lang.String name, boolean value)
          Assigns a Boolean to the parameter with the given name
 HttpParams AbstractHttpParams.setBooleanParameter(java.lang.String name, boolean value)
           
 HttpParams HttpParams.setDoubleParameter(java.lang.String name, double value)
          Assigns a Double to the parameter with the given name
 HttpParams AbstractHttpParams.setDoubleParameter(java.lang.String name, double value)
           
 HttpParams HttpParams.setIntParameter(java.lang.String name, int value)
          Assigns an Integer to the parameter with the given name
 HttpParams AbstractHttpParams.setIntParameter(java.lang.String name, int value)
           
 HttpParams HttpParams.setLongParameter(java.lang.String name, long value)
          Assigns a Long to the parameter with the given name
 HttpParams AbstractHttpParams.setLongParameter(java.lang.String name, long value)
           
 HttpParams HttpParams.setParameter(java.lang.String name, java.lang.Object value)
          Assigns the value to the parameter with the given name
 HttpParams BasicHttpParams.setParameter(java.lang.String name, java.lang.Object value)
           
 

Methods in org.apache.http.params with parameters of type HttpParams
protected  void BasicHttpParams.copyParams(HttpParams target)
          Copies the locally defined parameters to the argument parameters.
static int HttpConnectionParams.getConnectionTimeout(HttpParams params)
          Returns the timeout until a connection is etablished.
static java.lang.String HttpProtocolParams.getContentCharset(HttpParams params)
          Returns the default charset to be used for writing content body, when no charset explicitly specified.
static java.lang.String HttpProtocolParams.getHttpElementCharset(HttpParams params)
          Returns the charset to be used for writing HTTP headers.
static int HttpConnectionParams.getLinger(HttpParams params)
          Returns linger-on-close timeout.
static int HttpConnectionParams.getSocketBufferSize(HttpParams params)
           
static int HttpConnectionParams.getSoTimeout(HttpParams params)
          Returns the default socket timeout (SO_TIMEOUT) in milliseconds which is the timeout for waiting for data.
static boolean HttpConnectionParams.getTcpNoDelay(HttpParams params)
          Tests if Nagle's algorithm is to be used.
static java.lang.String HttpProtocolParams.getUserAgent(HttpParams params)
           
static HttpVersion HttpProtocolParams.getVersion(HttpParams params)
          Returns HTTP protocol version to be used per default.
static boolean HttpConnectionParams.isStaleCheckingEnabled(HttpParams params)
          Tests whether stale connection check is to be used.
static void HttpParamsLinker.link(HttpMessage message, HttpParams defaults)
          Builds parameter hierarchy by linking parameters associated with the given HTTP message and the given defaults.
static void HttpConnectionParams.setConnectionTimeout(HttpParams params, int timeout)
          Sets the timeout until a connection is etablished.
static void HttpProtocolParams.setContentCharset(HttpParams params, java.lang.String charset)
          Sets the default charset to be used for writing content body, when no charset explicitly specified.
 void HttpLinkedParams.setDefaults(HttpParams params)
          WARNING: This method is not part of the API.
 void BasicHttpParams.setDefaults(HttpParams params)
          Provides default parameters.
static void HttpProtocolParams.setHttpElementCharset(HttpParams params, java.lang.String charset)
          Sets the charset to be used for writing HTTP headers.
static void HttpConnectionParams.setLinger(HttpParams params, int value)
          Returns linger-on-close timeout.
static void HttpConnectionParams.setSocketBufferSize(HttpParams params, int size)
           
static void HttpConnectionParams.setSoTimeout(HttpParams params, int timeout)
          Sets the default socket timeout (SO_TIMEOUT) in milliseconds which is the timeout for waiting for data.
static void HttpConnectionParams.setStaleCheckingEnabled(HttpParams params, boolean value)
          Defines whether stale connection check is to be used.
static void HttpConnectionParams.setTcpNoDelay(HttpParams params, boolean value)
          Determines whether Nagle's algorithm is to be used.
static void HttpProtocolParams.setUseExpectContinue(HttpParams params, boolean b)
           
static void HttpProtocolParams.setUserAgent(HttpParams params, java.lang.String useragent)
           
static void HttpProtocolParams.setVersion(HttpParams params, HttpVersion version)
          Assigns the HTTP protocol version to be used by the HTTP methods that this collection of parameters applies to.
static boolean HttpProtocolParams.useExpectContinue(HttpParams params)
           
 

Constructors in org.apache.http.params with parameters of type HttpParams
BasicHttpParams(HttpParams defaults)
          Creates a new collection of parameters with the given parent.
 

Uses of HttpParams in org.apache.http.protocol
 

Methods in org.apache.http.protocol that return HttpParams
 HttpParams HttpService.getParams()
           
 

Methods in org.apache.http.protocol with parameters of type HttpParams
 void HttpService.setParams(HttpParams params)
           
 



Copyright © 2005-2009 Apache Software Foundation. All Rights Reserved.