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.io The transport layer abstraction of the HTTP components. 
org.apache.http.message A selection of HTTP message implementations. 
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 HttpServerConnection.bind(java.net.Socket socket, HttpParams params)
          Binds this connection to an underlying socket.
 void HttpClientConnection.open(HttpParams params)
          Opens the connection.
 HttpRequest HttpServerConnection.receiveRequestHeader(HttpParams params)
          Receives the request line and all headers available from this connection.
 HttpResponse HttpClientConnection.receiveResponseHeader(HttpParams params)
          Receives the request line and headers of the next response available from this connection.
 void HttpMessage.setParams(HttpParams params)
          Provides parameters to be used for the processing of this message.
 void HttpProxyConnection.tunnelTo(HttpHost targetHost, HttpParams params)
          After this connection is opened to the proxy, this method may be called to create a new connection over it.
 

Uses of HttpParams in org.apache.http.impl
 

Classes in org.apache.http.impl that implement HttpParams
 class DefaultHttpParams
          This class represents a collection of HTTP protocol parameters.
 

Methods in org.apache.http.impl that return HttpParams
 HttpParams DefaultHttpParams.getDefaults()
           
 HttpParams DefaultHttpParams.setBooleanParameter(java.lang.String name, boolean value)
           
 HttpParams DefaultHttpParams.setDoubleParameter(java.lang.String name, double value)
           
 HttpParams DefaultHttpParams.setIntParameter(java.lang.String name, int value)
           
 HttpParams DefaultHttpParams.setLongParameter(java.lang.String name, long value)
           
 HttpParams DefaultHttpParams.setParameter(java.lang.String name, java.lang.Object value)
           
 

Methods in org.apache.http.impl with parameters of type HttpParams
protected  void AbstractHttpConnection.bind(java.net.Socket socket, HttpParams params)
           
 void DefaultHttpServerConnection.bind(java.net.Socket socket, HttpParams params)
           
 void DefaultHttpClientConnection.open(HttpParams params)
           
protected  HttpResponse DefaultHttpClientConnection.readResponseStatusLine(HttpParams params)
           
 HttpRequest DefaultHttpServerConnection.receiveRequestHeader(HttpParams params)
           
protected  HttpRequest DefaultHttpServerConnection.receiveRequestLine(HttpParams params)
           
 HttpResponse DefaultHttpClientConnection.receiveResponseHeader(HttpParams params)
           
 void DefaultHttpParams.setDefaults(HttpParams params)
           
 void DefaultHttpProxyConnection.tunnelTo(HttpHost targetHost, HttpParams params)
           
 

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

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

Methods in org.apache.http.impl.io with parameters of type HttpParams
 java.net.Socket SSLSocketFactory.createSocket(java.lang.String host, int port, java.net.InetAddress localAddress, int localPort, HttpParams params)
          Attempts to get a new socket connection to the given host within the given time limit.
 java.net.Socket PlainSocketFactory.createSocket(java.lang.String host, int port, java.net.InetAddress localAddress, int localPort, HttpParams params)
          Attempts to get a new socket connection to using old (pre Java 1.4) IO mode.
 void AbstractHttpDataReceiver.reset(HttpParams params)
           
 void AbstractHttpDataTransmitter.reset(HttpParams params)
           
 

Uses of HttpParams in org.apache.http.io
 

Methods in org.apache.http.io with parameters of type HttpParams
 java.net.Socket SocketFactory.createSocket(java.lang.String host, int port, java.net.InetAddress localAddress, int localPort, HttpParams params)
          Gets a new socket connection to the given host.
 void HttpDataTransmitter.reset(HttpParams params)
           
 void HttpDataReceiver.reset(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.params
 

Methods in org.apache.http.params that return HttpParams
 HttpParams HttpParams.getDefaults()
          Returns the parent collection that this collection will defer to for a default value if a particular parameter is not explicitly set in the collection itself
 HttpParams HttpParams.setBooleanParameter(java.lang.String name, boolean value)
          Assigns a Boolean to the parameter with the given name
 HttpParams HttpParams.setDoubleParameter(java.lang.String name, double value)
          Assigns a Double to the parameter with the given name
 HttpParams HttpParams.setIntParameter(java.lang.String name, int value)
          Assigns an Integer to the parameter with the given name
 HttpParams HttpParams.setLongParameter(java.lang.String name, long value)
          Assigns a Long to the parameter with the given name
 HttpParams HttpParams.setParameter(java.lang.String name, java.lang.Object value)
          Assigns the value to the parameter with the given name
 

Methods in org.apache.http.params with parameters of type HttpParams
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.getCredentialCharset(HttpParams params)
          Returns the charset to be used for credentials.
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 java.lang.String HttpProtocolParams.getVirtualHost(HttpParams params)
          Returns the virtual host name.
static boolean HttpConnectionParams.isStaleCheckingEnabled(HttpParams params)
          Tests whether stale connection check is to be used.
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.
static void HttpProtocolParams.setCredentialCharset(HttpParams params, java.lang.String charset)
          Sets the charset to be used for writing HTTP headers.
 void HttpParams.setDefaults(HttpParams params)
          Assigns the parent collection that this collection will defer to for a default value if a particular parameter is not explicitly set in the collection itself
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 void HttpProtocolParams.setVirtualHost(HttpParams params, java.lang.String hostname)
          Sets the virtual host name.
static boolean HttpProtocolParams.useExpectContinue(HttpParams params)
           
 

Uses of HttpParams in org.apache.http.protocol
 

Methods in org.apache.http.protocol that return HttpParams
 HttpParams HttpService.getParams()
           
 HttpParams HttpRequestExecutor.getParams()
          Obtain the parameters for executing requests.
 

Methods in org.apache.http.protocol with parameters of type HttpParams
protected  void HttpRequestExecutor.doEstablishConnection(HttpClientConnection conn, HttpHost target, HttpParams params)
          Establish a connection with the target host.
 void HttpService.setParams(HttpParams params)
           
 void HttpRequestExecutor.setParams(HttpParams params)
          Set new parameters for executing requests.
 



Copyright 2005-2005-2006 Apache Software Foundation. All Rights Reserved.