Merge pull request #31 from nlevitt/proxy-port-configurable

make http proxy port configurable in cxml, avoiding this: org.springfram...
This commit is contained in:
Kenji Nagahashi
2014-01-22 16:05:44 -08:00
@@ -318,8 +318,8 @@ public class FetchHTTP extends Processor implements Lifecycle {
/**
* Proxy port (set only if needed).
*/
public void setHttpProxyPort(int port) {
kp.put("httpProxyPort",port);
public void setHttpProxyPort(Integer port) {
kp.put("httpProxyPort", port);
}
public String getHttpProxyUser() {