private static Iterable<String> splitCSV(String csvNames) {
return Splitter.on(',').trimResults().split(csvNames);
}
public Address getHost(String hostname) {
Address address = hostToAddress.get(hostname);
if(address == null){
hostToAddress.put(hostname, address = new SshAddress(hostname, null, null, hostname));
}