fixed JavaDoc warnings

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@554231 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Roland Weber 2007-07-07 17:59:31 +00:00
parent 47a7966ae9
commit 79f250d896
2 changed files with 6 additions and 5 deletions

View File

@ -50,7 +50,7 @@ import org.apache.http.protocol.HttpContext;
import org.apache.http.util.EntityUtils; import org.apache.http.util.EntityUtils;
/** /**
* This examples demonstrates the use of protocol interceptors to transparently * Demonstration of the use of protocol interceptors to transparently
* modify properties of HTTP messages sent / received by the HTTP client. * modify properties of HTTP messages sent / received by the HTTP client.
* <p/> * <p/>
* In this particular case HTTP client is made capable of transparent content * In this particular case HTTP client is made capable of transparent content
@ -58,8 +58,9 @@ import org.apache.http.util.EntityUtils;
* that adds 'Accept-Encoding: gzip' header to all outgoing requests and * that adds 'Accept-Encoding: gzip' header to all outgoing requests and
* a response interceptor that automatically expands compressed response * a response interceptor that automatically expands compressed response
* entities by wrapping them with a uncompressing decorator class. The use of * entities by wrapping them with a uncompressing decorator class. The use of
* protocol interceptors makes content compression completely transparent to the * protocol interceptors makes content compression completely transparent to
* consumer of the {@linkHttpClient} interface. * the consumer of the {@link org.apache.http.client.HttpClient HttpClient}
* interface.
*/ */
public class ClientGZipContentCompression { public class ClientGZipContentCompression {

View File

@ -115,7 +115,7 @@ public interface HttpClient {
* @param request the request to execute * @param request the request to execute
* @param context the context to use for the execution, or * @param context the context to use for the execution, or
* <code>null</code> to use the * <code>null</code> to use the
* {@link #getContext default context} * {@link #getDefaultContext default context}
* *
* @return the response to the request. This is always a final response, * @return the response to the request. This is always a final response,
* never an intermediate response with an 1xx status code. * never an intermediate response with an 1xx status code.
@ -138,7 +138,7 @@ public interface HttpClient {
* @param roureq the request to execute along with the route * @param roureq the request to execute along with the route
* @param context the context to use for the execution, or * @param context the context to use for the execution, or
* <code>null</code> to use the * <code>null</code> to use the
* {@link #getContext default context} * {@link #getDefaultContext default context}
* *
* @return the response to the request. See * @return the response to the request. See
* {@link #execute(HttpUriRequest,HttpContext)} * {@link #execute(HttpUriRequest,HttpContext)}