Package | Description |
---|---|
com.maverick.ssh |
This package contains a set of general interface contracts for SSH communication that
provide the core set of functionality available in both the SSH1 and SSH2 protocol specifications.
|
com.maverick.ssh1 |
This package contains an SSH1 implementation of the
com.maverick.ssh interfaces.
|
com.maverick.ssh2 |
This package contains an SSH2 implementation of the
com.maverick.ssh interfaces.
|
Modifier and Type | Method and Description |
---|---|
SshContext |
SshClient.getContext()
Get the context that created this client.
|
SshContext |
SshConnector.getContext(int version)
Deprecated.
Future version will only support SSH2. Use getContext without parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
SshClient.connect(SshTransport transport,
SshContext context,
SshClientConnector connector,
String username,
String localIdentification,
String remoteIdentification,
boolean buffered)
Connect to an SSH server.
|
SshClient |
SshConnector.connect(SshTransport transport,
String username,
boolean buffered,
SshContext context) |
SshClient |
SshClientConnector.connect(SshTransport transport,
String username,
boolean buffered,
SshContext context)
See
SshClientConnector.connect(SshTransport, String) for full details. |
SshClient |
SshConnector.connect(SshTransport transport,
String username,
SshContext context) |
SshClient |
SshClientConnector.connect(SshTransport transport,
String username,
SshContext context)
See
SshClientConnector.connect(SshTransport, String) for full details. |
Modifier and Type | Class and Description |
---|---|
class |
Ssh1Context
This class implements SshContext to provide
SSH1 connection configuration through the SshConnector class.
|
Modifier and Type | Method and Description |
---|---|
SshContext |
Ssh1Client.getContext() |
Modifier and Type | Method and Description |
---|---|
void |
Ssh1Client.connect(SshTransport transport,
SshContext context,
SshClientConnector connector,
String username,
String localIdentification,
String remoteIdentification,
boolean buffered) |
Modifier and Type | Class and Description |
---|---|
class |
Ssh2Context
This class implements SshContextto
provide SSH2 connection configuration through the SshConnector class.
|
Modifier and Type | Method and Description |
---|---|
SshContext |
Ssh2Client.getContext() |
Modifier and Type | Method and Description |
---|---|
void |
Ssh2Client.connect(SshTransport io,
SshContext context,
SshClientConnector connector,
String username,
String localIdentification,
String remoteIdentification,
boolean buffered) |
Copyright © 2024. All rights reserved.