Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@659788 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2008-05-24 10:42:23 +00:00
parent c0cf0c7654
commit 68b9913d7d
3 changed files with 6 additions and 11 deletions

View File

@ -82,9 +82,7 @@ ClientConnectionManager getConnectionManager()
;
/**
* Executes a request using the
* {@link #getDefaultContext() default context}.
* See there for details.
* Executes a request using the default context.
*
* @param request the request to execute
*
@ -106,8 +104,7 @@ HttpResponse execute(HttpUriRequest request)
*
* @param request the request to execute
* @param context the context to use for the execution, or
* <code>null</code> to use the
* {@link #getDefaultContext default context}
* <code>null</code> to use the default context
*
* @return the response to the request. This is always a final response,
* never an intermediate response with an 1xx status code.
@ -126,8 +123,7 @@ HttpResponse execute(HttpUriRequest request, HttpContext context)
/**
* Executes a request to the target using the
* {@link #getDefaultContext() default context}.
* Executes a request to the target using the default context.
* See there for details.
*
* @param target the target host for the request.
@ -161,8 +157,7 @@ HttpResponse execute(HttpHost target, HttpRequest request)
* to a default target or by inspecting the request.
* @param request the request to execute
* @param context the context to use for the execution, or
* <code>null</code> to use the
* {@link #getDefaultContext default context}
* <code>null</code> to use the default context
*
* @return the response to the request. This is always a final response,
* never an intermediate response with an 1xx status code.

View File

@ -35,7 +35,7 @@
* generate Type1 messages and Type3 messages in response to a
* Type2 challenge.
* <p/>
* For details see {@linkplain http://davenport.sourceforge.net/ntlm.html}}
* For details see <a href="http://davenport.sourceforge.net/ntlm.html">this resource</a>
*
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
*/

View File

@ -35,7 +35,7 @@
import org.apache.http.conn.scheme.LayeredSocketFactory;
/**
* {@link SecureSocketFactory} mockup implementation.
* {@link LayeredSocketFactory} mockup implementation.
*/
public class SecureSocketFactoryMockup extends SocketFactoryMockup
implements LayeredSocketFactory {