return user;
}
public static Map<String, String> sshConfigFromFramework(Framework framework) {
HashMap<String, String> config = new HashMap<String, String>();
IPropertyLookup propertyLookup = framework.getPropertyLookup();
for (Object o : propertyLookup.getPropertiesMap().keySet()) {
String key = (String) o;
if (key.startsWith(FWK_SSH_CONFIG_PREFIX)) {
String name = key.substring(FWK_SSH_CONFIG_PREFIX.length());
config.put(name, propertyLookup.getProperty(key));
}
}
return config;
}