use of com.jn.agileway.ssh.client.impl.ganymedssh2.sftp.Ssh2SftpSession in project agileway by fangjinuo.
the class Ssh2Connection method openSftpSession.
@Override
public SftpSession openSftpSession() throws SshException {
try {
SFTPv3Client sftpClient = new SFTPv3Client(this.delegate);
Ssh2SftpSession session = new Ssh2SftpSession(sftpClient);
session.setSshConnection(this);
return session;
} catch (Throwable ex) {
throw new SshException(ex.getMessage(), ex);
}
}
use of com.jn.agileway.ssh.client.impl.ganymedssh2.sftp.Ssh2SftpSession in project agileway by fangjinuo.
the class Ssh2Connection method openSftpSession.
@Override
public SftpSession openSftpSession() throws SshException {
try {
SFTPv3Client sftpClient = new SFTPv3Client(this.delegate);
Ssh2SftpSession session = new Ssh2SftpSession(sftpClient);
session.setSshConnection(this);
return session;
} catch (Throwable ex) {
throw new SshException(ex.getMessage(), ex);
}
}
Aggregations