Package | Description |
---|---|
org.eclipse.jgit.transport |
Transport (fetch/push) for different protocols.
|
org.eclipse.jgit.transport.sshd |
Modifier and Type | Class and Description |
---|---|
class |
DefaultSshSessionFactory
Loads known hosts and private keys from
$HOME/.ssh . |
class |
JschConfigSessionFactory
The base session factory that loads known hosts and private keys from
$HOME/.ssh . |
Modifier and Type | Field and Description |
---|---|
private static SshSessionFactory |
SshSessionFactory.INSTANCE |
private SshSessionFactory |
SshTransport.sch |
Modifier and Type | Method and Description |
---|---|
static SshSessionFactory |
SshSessionFactory.getInstance()
Get the currently configured JVM-wide factory.
|
SshSessionFactory |
SshTransport.getSshSessionFactory()
Get the SSH session factory
|
private static SshSessionFactory |
SshSessionFactory.loadSshSessionFactory() |
Modifier and Type | Method and Description |
---|---|
static void |
SshSessionFactory.setInstance(SshSessionFactory newFactory)
Change the JVM-wide factory to a different implementation.
|
void |
SshTransport.setSshSessionFactory(SshSessionFactory factory)
Set SSH session factory instead of the default one for this instance of
the transport.
|
Modifier and Type | Class and Description |
---|---|
class |
SshdSessionFactory
A
SshSessionFactory that uses Apache MINA sshd. |