super.createGUI(parent);
}
@Override
public ConnectionDescription getConnectionDescription() throws URISyntaxException {
ConnectionDescription loc = super.getConnectionDescription();
loc.setUri(new URI(m_scheme, null, textHost.getText(), spinnerPort.getSelection(), loc.getUri().getPath(), null, null));
loc.setParameter("username", textUsername.getText());
loc.setSecretParameter("password", textPassword.getText());
loc.setParameter("publicKeyAuth", buttonKeybased.getSelection() ? "enabled" : "disabled");
loc.setSecretParameter("keyPassphrase", textKeyPassphrase.getText());
return loc;
}