deprecated proxyUrl and replaced it with proxyServer

Former-commit-id: 3330de9b2c36742a0b93d478b7dadaccea00cd4a
This commit is contained in:
Jeremy Long
2014-05-31 06:39:36 -04:00
parent f85014a86d
commit 4539b040e0

View File

@@ -111,8 +111,15 @@ public final class Settings {
public static final String CVE_SCHEMA_2_0 = "cve.url-2.0.base";
/**
* The properties key for the proxy server.
*
* @deprecated use {@link org.owasp.dependencycheck.utils.Settings.KEYS#PROXY_SERVER} instead.
*/
public static final String PROXY_SERVER = "proxy.url";
@Deprecated
public static final String PROXY_URL = "proxy.server";
/**
* The properties key for the proxy server.
*/
public static final String PROXY_SERVER = "proxy.server";
/**
* The properties key for the proxy port - this must be an integer value.
*/