Package | Description |
---|---|
org.apache.sshd |
Defines the two main classes for the client and server side of SSH protocol support.
|
org.apache.sshd.client.future | |
org.apache.sshd.client.session |
Modifier and Type | Method and Description |
---|---|
AuthFuture |
ClientSession.authAgent(String username)
Authenticate the session with the given username using an ssh agent.
|
AuthFuture |
ClientSession.authInteractive(String username,
String password)
Authenticate the session with the given username and password.
|
AuthFuture |
ClientSession.authPassword(String username,
String password)
Authenticate the session with the given username and password.
|
AuthFuture |
ClientSession.authPublicKey(String username,
KeyPair key)
Authenticate the session with the given username and public key.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultAuthFuture
A default implementation of
AuthFuture . |
Modifier and Type | Method and Description |
---|---|
AuthFuture |
ClientSessionImpl.authAgent(String user) |
AuthFuture |
ClientSessionImpl.authInteractive(String user,
String password) |
AuthFuture |
ClientSessionImpl.authPassword(String user,
String password) |
AuthFuture |
ClientSessionImpl.authPublicKey(String user,
KeyPair key) |
Copyright © 2008–2013 The Apache Software Foundation. All rights reserved.