Value hostInsidePort = null;
Value hostOutsidePort = null;
final boolean infoPanelOk = infoPanel != null;
final Set<Host> configuredProxyHosts = getConfiguredProxyHosts();
for (final Host host : getHosts()) {
final HostProxy hostProxy = dxml.getHostProxy(host.getName(), getName());
final Host proxyHost;
final Value insideIp;
final Value outsideIp;
final Value insidePort;
final Value outsidePort;
if (hostProxy != null) {
insideIp = hostProxy.getInsideIp();
outsideIp = hostProxy.getOutsideIp();
insidePort = hostProxy.getInsidePort();
outsidePort = hostProxy.getOutsidePort();
proxyHost = getCluster().getProxyHostByName(hostProxy.getProxyHostName());
} else {
insideIp = new StringValue();
outsideIp = new StringValue();
insidePort = new StringValue();
outsidePort = new StringValue();