Add missing @Deprecated annotations
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1000096 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9ced45d7e6
commit
86c464d15e
|
@ -46,6 +46,7 @@ public interface ConnManagerPNames {
|
|||
* <p>
|
||||
* @deprecated use {@link CoreConnectionPNames#CONNECTION_TIMEOUT}
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String TIMEOUT = "http.conn-manager.timeout";
|
||||
|
||||
/**
|
||||
|
@ -58,6 +59,7 @@ public interface ConnManagerPNames {
|
|||
* @deprecated use {@link ThreadSafeClientConnManager#setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int)},
|
||||
* {@link ThreadSafeClientConnManager#getMaxForRoute(org.apache.http.conn.routing.HttpRoute)}
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-per-route";
|
||||
|
||||
/**
|
||||
|
@ -70,6 +72,7 @@ public interface ConnManagerPNames {
|
|||
* @deprecated use {@link ThreadSafeClientConnManager#setMaxTotal(int)},
|
||||
* {@link ThreadSafeClientConnManager#getMaxTotal()}
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String MAX_TOTAL_CONNECTIONS = "http.conn-manager.max-total";
|
||||
|
||||
}
|
||||
|
|
|
@ -57,6 +57,7 @@ public final class ConnManagerParams implements ConnManagerPNames {
|
|||
*
|
||||
* @deprecated use {@link HttpConnectionParams#getConnectionTimeout(HttpParams)}
|
||||
*/
|
||||
@Deprecated
|
||||
public static long getTimeout(final HttpParams params) {
|
||||
if (params == null) {
|
||||
throw new IllegalArgumentException("HTTP parameters may not be null");
|
||||
|
@ -71,8 +72,9 @@ public final class ConnManagerParams implements ConnManagerPNames {
|
|||
*
|
||||
* @param timeout the timeout in milliseconds
|
||||
*
|
||||
* @deprecated use {@link HttpConnectionParams#setConnectionTimeout(HttpParams, int)
|
||||
* @deprecated use {@link HttpConnectionParams#setConnectionTimeout(HttpParams, int)}
|
||||
*/
|
||||
@Deprecated
|
||||
public static void setTimeout(final HttpParams params, long timeout) {
|
||||
if (params == null) {
|
||||
throw new IllegalArgumentException("HTTP parameters may not be null");
|
||||
|
@ -98,6 +100,7 @@ public final class ConnManagerParams implements ConnManagerPNames {
|
|||
*
|
||||
* @deprecated use {@link ThreadSafeClientConnManager#setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int)}
|
||||
*/
|
||||
@Deprecated
|
||||
public static void setMaxConnectionsPerRoute(final HttpParams params,
|
||||
final ConnPerRoute connPerRoute) {
|
||||
if (params == null) {
|
||||
|
@ -116,6 +119,7 @@ public final class ConnManagerParams implements ConnManagerPNames {
|
|||
*
|
||||
* @deprecated use {@link ThreadSafeClientConnManager#getMaxForRoute(org.apache.http.conn.routing.HttpRoute)}
|
||||
*/
|
||||
@Deprecated
|
||||
public static ConnPerRoute getMaxConnectionsPerRoute(final HttpParams params) {
|
||||
if (params == null) {
|
||||
throw new IllegalArgumentException
|
||||
|
@ -136,6 +140,7 @@ public final class ConnManagerParams implements ConnManagerPNames {
|
|||
*
|
||||
* @deprecated use {@link ThreadSafeClientConnManager#setMaxTotal(int)}
|
||||
*/
|
||||
@Deprecated
|
||||
public static void setMaxTotalConnections(
|
||||
final HttpParams params,
|
||||
int maxTotalConnections) {
|
||||
|
@ -155,6 +160,7 @@ public final class ConnManagerParams implements ConnManagerPNames {
|
|||
*
|
||||
* @deprecated use {@link ThreadSafeClientConnManager#getMaxTotal()}
|
||||
*/
|
||||
@Deprecated
|
||||
public static int getMaxTotalConnections(
|
||||
final HttpParams params) {
|
||||
if (params == null) {
|
||||
|
|
Loading…
Reference in New Issue