mirror of
https://github.com/apache/httpcomponents-client.git
synced 2025-02-28 05:39:07 +00:00
JavaDoc fixes, removed broken constructor
git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@535473 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0a8b3be76d
commit
47cad596ae
@ -150,9 +150,7 @@ public synchronized Cookie[] getCookies() {
|
||||
*
|
||||
* @return true if any cookies were purged.
|
||||
*
|
||||
* @see Cookie#isExpired()
|
||||
*
|
||||
* @see #purgeExpiredCookies()
|
||||
* @see Cookie#isExpired(Date)
|
||||
*/
|
||||
public synchronized boolean purgeExpiredCookies() {
|
||||
boolean removed = false;
|
||||
|
@ -44,7 +44,7 @@
|
||||
public class HttpClientParams {
|
||||
|
||||
/**
|
||||
* Sets the timeout in milliseconds used when retrieving an instance of
|
||||
* Defines the timeout in milliseconds used when retrieving an instance of
|
||||
* {@link org.apache.http.conn.ManagedClientConnection} from the
|
||||
* {@link org.apache.http.conn.ClientConnectionManager}.
|
||||
* <p>
|
||||
@ -109,9 +109,9 @@ private HttpClientParams() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the timeout in milliseconds used when retrieving an
|
||||
* {@link org.apache.commons.httpclient.HttpConnection HTTP connection} from the
|
||||
* {@link org.apache.commons.httpclient.HttpConnectionManager HTTP connection manager}.
|
||||
* Returns the timeout in milliseconds used when retrieving a
|
||||
* {@link org.apache.http.conn.ManagedClientConnection} from the
|
||||
* {@link org.apache.http.conn.ClientConnectionManager}.
|
||||
*
|
||||
* @return timeout in milliseconds.
|
||||
*/
|
||||
@ -123,9 +123,9 @@ public static long getConnectionManagerTimeout(final HttpParams params) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the timeout in milliseconds used when retrieving an
|
||||
* {@link org.apache.commons.httpclient.HttpConnection HTTP connection} from the
|
||||
* {@link org.apache.commons.httpclient.HttpConnectionManager HTTP connection manager}.
|
||||
* Sets the timeout in milliseconds used when retrieving a
|
||||
* {@link org.apache.http.conn.ManagedClientConnection} from the
|
||||
* {@link org.apache.http.conn.ClientConnectionManager}.
|
||||
*
|
||||
* @param timeout the timeout in milliseconds
|
||||
*/
|
||||
|
@ -96,9 +96,6 @@ public class DefaultHttpClient extends AbstractHttpClient {
|
||||
*
|
||||
* @param params the parameters
|
||||
* @param conman the connection manager
|
||||
* @param schemes the scheme registry, or
|
||||
* <code>null</code> to use the
|
||||
* {@link SchemeRegistry#DEFAULT default}
|
||||
*/
|
||||
public DefaultHttpClient(
|
||||
final ClientConnectionManager conman,
|
||||
|
@ -70,20 +70,10 @@ public class DefaultClientConnectionOperator
|
||||
protected SchemeRegistry schemeRegistry;
|
||||
|
||||
|
||||
/**
|
||||
* Creates a new client connection operator.
|
||||
* Uses {@link SchemeRegistry#DEFAULT SchemeRegistry.DEFAULT}
|
||||
* as the scheme registry.
|
||||
*/
|
||||
public DefaultClientConnectionOperator() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new client connection operator for the given scheme registry.
|
||||
*
|
||||
* @param schemes the scheme registry, or <code>null</code> to use
|
||||
* {@link SchemeRegistry#DEFAULT SchemeRegistry.DEFAULT}
|
||||
* @param schemes the scheme registry
|
||||
*/
|
||||
public DefaultClientConnectionOperator(SchemeRegistry schemes) {
|
||||
if (schemes == null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user