Author: fschumacher
Date: Tue Oct 13 18:55:29 2015
New Revision: 1708484
URL: http://svn.apache.org/viewvc?rev=1708484&view=rev
Log:
Add a bit of description to javadoc parameters and add
the misssing return description.
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java?rev=1708484&r1=1708483&r2=1708484&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
(original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
Tue Oct 13 18:55:29 2015
@@ -485,11 +485,11 @@ public class HTTPHC4Impl extends HTTPHCA
/**
* Execute request either as is or under PrivilegedAction
* if a Subject is available for url
- * @param httpClient
- * @param httpRequest
- * @param localContext
- * @param url
- * @return
+ * @param httpClient the {@link HttpClient} to be used to execute the httpRequest
+ * @param httpRequest the {@link HttpRequest} to be executed
+ * @param localContext th {@link HttpContext} to be used for execution
+ * @param url the target url (will be used to look up a possible subject for the execution)
+ * @return the result of the execution of the httpRequest
* @throws IOException
* @throws ClientProtocolException
*/
|