String lbHost = host!=null?host.getValue():null;
String lbPort = port!=null?port.getValue():null;
String lbProxyHost = proxyHost!=null?proxyHost.getValue():null;
String lbProxyPort = proxyPort!=null?proxyPort.getValue():null;
boolean isSec = isSecure!=null? Boolean.getBoolean(isSecure.getValue()):true;
_connectionManager = new
ConnectionManager(lbHost,lbPort,lbProxyHost,lbProxyPort,lbName,isSec);
} catch ( Exception e ){
throw new IOException(e.getMessage());
}
}