Specify which proxy to use for FTP connections. @param ftpProxy the proxy host, expected format is hostname.com:1234 @return reference to self @deprecated setFtpProxy is deprecated and will be removed in a future release.
(String ftpProxy)
| 237 | * @deprecated setFtpProxy is deprecated and will be removed in a future release. |
| 238 | */ |
| 239 | @Deprecated |
| 240 | public Proxy setFtpProxy(String ftpProxy) { |
| 241 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 242 | this.proxyType = ProxyType.MANUAL; |
| 243 | this.ftpProxy = ftpProxy; |
| 244 | return this; |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Gets the HTTP proxy. |