Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

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

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.setParameter(java.lang.String name, java.lang.Object value)
          Assigns the value to the parameter with the given name
 HttpParams HttpParams.setLongParameter(java.lang.String name, long value)
          Assigns a java.lang.Long to the parameter with the given name
 HttpParams HttpParams.setIntParameter(java.lang.String name, int value)
          Assigns an java.lang.Integer to the parameter with the given name
 HttpParams HttpParams.setDoubleParameter(java.lang.String name, double value)
          Assigns a java.lang.Double to the parameter with the given name
 HttpParams HttpParams.setBooleanParameter(java.lang.String name, boolean value)
          Assigns a java.lang.Boolean to the parameter with the given name
 

Methods in org.apache.http.params with parameters of type HttpParams
static java.lang.String HttpProtocolParams.getHttpElementCharset(HttpParams params)
          Returns the charset to be used for writing HTTP headers.
static void HttpProtocolParams.setHttpElementCharset(HttpParams params, java.lang.String charset)
          Sets the charset to be used for writing HTTP headers.
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 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 java.lang.String HttpProtocolParams.getCredentialCharset(HttpParams params)
          Returns the charset to be used for credentials.
static void HttpProtocolParams.setCredentialCharset(HttpParams params, java.lang.String charset)
          Sets the charset to be used for writing HTTP headers.
static org.apache.http.HttpVersion HttpProtocolParams.getVersion(HttpParams params)
          Returns HTTP protocol version to be used per default.
static void HttpProtocolParams.setVersion(HttpParams params, org.apache.http.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 java.lang.String HttpProtocolParams.getVirtualHost(HttpParams params)
          Returns the virtual host name.
static java.lang.String HttpProtocolParams.getUserAgent(HttpParams params)
           
static void HttpProtocolParams.setUserAgent(HttpParams params, java.lang.String useragent)
           
static boolean HttpProtocolParams.useExpectContinue(HttpParams params)
           
static void HttpProtocolParams.setUseExpectContinue(HttpParams params, boolean b)
           
 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 int HttpConnectionParams.getSoTimeout(HttpParams params)
          Returns the default socket timeout (SO_TIMEOUT) in milliseconds which is the timeout for waiting for data.
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 boolean HttpConnectionParams.getTcpNoDelay(HttpParams params)
          Tests if Nagle's algorithm is to be used.
static void HttpConnectionParams.setTcpNoDelay(HttpParams params, boolean value)
          Determines whether Nagle's algorithm is to be used.
static int HttpConnectionParams.getSocketBufferSize(HttpParams params)
           
static void HttpConnectionParams.setSocketBufferSize(HttpParams params, int size)
           
static int HttpConnectionParams.getLinger(HttpParams params)
          Returns linger-on-close timeout.
static void HttpConnectionParams.setLinger(HttpParams params, int value)
          Returns linger-on-close timeout.
static int HttpConnectionParams.getConnectionTimeout(HttpParams params)
          Returns the timeout until a connection is etablished.
static void HttpConnectionParams.setConnectionTimeout(HttpParams params, int timeout)
          Sets the timeout until a connection is etablished.
static boolean HttpConnectionParams.isStaleCheckingEnabled(HttpParams params)
          Tests whether stale connection check is to be used.
static void HttpConnectionParams.setStaleCheckingEnabled(HttpParams params, boolean value)
          Defines whether stale connection check is to be used.