}
ProxyServer proxy = new ProxyServer(proxyHost, proxyPortInt, proxyUser, proxyPassword);
if (nonProxyHosts != null) {
final String[] strings = nonProxyHosts.split("\\|");
for (String uril : strings) {
proxy.addNonProxyHost(uril);
}
}
confBuilder.setProxyServer(proxy);
}
if (userAgent != null) {