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:
Roland Weber 2007-05-05 07:58:51 +00:00
parent 0a8b3be76d
commit 47cad596ae
4 changed files with 9 additions and 24 deletions

View File

@ -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;

View File

@ -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
*/

View File

@ -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,

View File

@ -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) {