public class JschSession extends Object implements RemoteSession
This class is the default session implementation using Jsch. Note that
JschConfigSessionFactory
is used to create the actual session passed
to the constructor.
Constructor and Description |
---|
JschSession(com.jcraft.jsch.Session session,
URIish uri)
Create a new session object by passing the real Jsch session and the URI
information.
|
Modifier and Type | Method and Description |
---|---|
void |
disconnect()
Disconnect the remote session
|
Process |
exec(String command,
int timeout)
Generate a new remote process to execute the given command.
|
com.jcraft.jsch.Channel |
getSftpChannel()
A kludge to allow
TransportSftp to get an Sftp channel from Jsch. |
public JschSession(com.jcraft.jsch.Session session, URIish uri)
session
- the real Jsch session created elsewhere.uri
- the URI information for the remote connectionpublic Process exec(String command, int timeout) throws IOException
RemoteSession
exec
in interface RemoteSession
command
- command to executetimeout
- timeout value, in seconds, for command executionIOException
- may be thrown in several cases. For example, on problems
opening input or output streams or on problems connecting or
communicating with the remote host. For the latter two cases,
a TransportException may be thrown (a subclass of
IOException).public void disconnect()
RemoteSession
disconnect
in interface RemoteSession
public com.jcraft.jsch.Channel getSftpChannel() throws com.jcraft.jsch.JSchException
TransportSftp
to get an Sftp channel from Jsch.
Ideally, this method would be generic, which would require implementing
generic Sftp channel operations in the RemoteSession class.com.jcraft.jsch.JSchException
- on problems getting the channel.Copyright © 2018 Eclipse JGit Project. All rights reserved.