protected Session createSession() throws JSchException {
final JSch jsch = new JSch();
final Session session = jsch.getSession(getConfiguration().getUsername(), getConfiguration().getHost());
// TODO there's got to be a better way to deal with accepting new hosts...
session.setUserInfo(new UserInfo() {
public String getPassphrase() {
return null;
}
public String getPassword() {