Javadoc8 fixes
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1621225 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
865260ba79
commit
96475684ab
|
@ -44,7 +44,7 @@ import org.apache.http.util.EntityUtils;
|
||||||
/**
|
/**
|
||||||
* An example of HttpClient can be customized to authenticate
|
* An example of HttpClient can be customized to authenticate
|
||||||
* preemptively using BASIC scheme.
|
* preemptively using BASIC scheme.
|
||||||
* <b/>
|
* <b>
|
||||||
* Generally, preemptive authentication can be considered less
|
* Generally, preemptive authentication can be considered less
|
||||||
* secure than a response to an authentication challenge
|
* secure than a response to an authentication challenge
|
||||||
* and therefore discouraged.
|
* and therefore discouraged.
|
||||||
|
|
|
@ -102,6 +102,7 @@ public abstract class AbstractConnPool {
|
||||||
* Obtains a pool entry with a connection within the given timeout.
|
* Obtains a pool entry with a connection within the given timeout.
|
||||||
*
|
*
|
||||||
* @param route the route for which to get the connection
|
* @param route the route for which to get the connection
|
||||||
|
* @param state the state
|
||||||
* @param timeout the timeout, 0 or negative for no timeout
|
* @param timeout the timeout, 0 or negative for no timeout
|
||||||
* @param tunit the unit for the {@code timeout},
|
* @param tunit the unit for the {@code timeout},
|
||||||
* may be {@code null} only if there is no timeout
|
* may be {@code null} only if there is no timeout
|
||||||
|
@ -126,6 +127,9 @@ public abstract class AbstractConnPool {
|
||||||
/**
|
/**
|
||||||
* Returns a new {@link PoolEntryRequest}, from which a {@link BasicPoolEntry}
|
* Returns a new {@link PoolEntryRequest}, from which a {@link BasicPoolEntry}
|
||||||
* can be obtained, or the request can be aborted.
|
* can be obtained, or the request can be aborted.
|
||||||
|
* @param route the route
|
||||||
|
* @param state the state
|
||||||
|
* @return the entry request
|
||||||
*/
|
*/
|
||||||
public abstract PoolEntryRequest requestPoolEntry(HttpRoute route, Object state);
|
public abstract PoolEntryRequest requestPoolEntry(HttpRoute route, Object state);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue