Package org.apache.sshd.client.simple
Interface SimpleSessionClient
-
- All Superinterfaces:
AutoCloseable,Channel,Closeable,SimpleClientConfigurator
- All Known Subinterfaces:
SimpleClient
- All Known Implementing Classes:
AbstractSimpleClient,AbstractSimpleClientSessionCreator
public interface SimpleSessionClient extends SimpleClientConfigurator, Channel
A simplified synchronous API for creating client sessions- Author:
- Apache MINA SSHD Project
-
-
Field Summary
-
Fields inherited from interface org.apache.sshd.client.simple.SimpleClientConfigurator
DEFAULT_AUTHENTICATION_TIMEOUT, DEFAULT_CONNECT_TIMEOUT, DEFAULT_PORT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClientSessionsessionLogin(String host, int port, String username, String password)Creates a session and logs in using the provided credentialsdefault ClientSessionsessionLogin(String host, int port, String username, KeyPair identity)Creates a session and logs in using the provided credentialsClientSessionsessionLogin(String uri, String password)Creates a session and logs in using the provided credentialsdefault ClientSessionsessionLogin(String host, String username, String password)Creates a session on the default port and logs in using the provided credentialsdefault ClientSessionsessionLogin(String host, String username, KeyPair identity)Creates a session on the default port and logs in using the provided credentialsClientSessionsessionLogin(String uri, KeyPair identity)Creates a session and logs in using the provided credentialsdefault ClientSessionsessionLogin(InetAddress host, int port, String username, String password)Creates a session and logs in using the provided credentialsdefault ClientSessionsessionLogin(InetAddress host, int port, String username, KeyPair identity)Creates a session and logs in using the provided credentialsdefault ClientSessionsessionLogin(InetAddress host, String username, String password)Creates a session on the default port and logs in using the provided credentialsdefault ClientSessionsessionLogin(InetAddress host, String username, KeyPair identity)Creates a session on the default port and logs in using the provided credentialsClientSessionsessionLogin(SocketAddress target, String username, String password)Creates a session and logs in using the provided credentialsClientSessionsessionLogin(SocketAddress target, String username, KeyPair identity)Creates a session and logs in using the provided credentials-
Methods inherited from interface org.apache.sshd.client.simple.SimpleClientConfigurator
getAuthenticationTimeout, getConnectTimeout, setAuthenticationTimeout, setConnectTimeout
-
-
-
-
Method Detail
-
sessionLogin
default ClientSession sessionLogin(String host, String username, String password) throws IOException
Creates a session on the default port and logs in using the provided credentials- Parameters:
host- The target host name or addressusername- Usernamepassword- Password- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(String host, int port, String username, String password) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
host- The target host name or addressport- The target portusername- Usernamepassword- Password- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(String host, String username, KeyPair identity) throws IOException
Creates a session on the default port and logs in using the provided credentials- Parameters:
host- The target host name or addressusername- Usernameidentity- TheKeyPairidentity- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(String host, int port, String username, KeyPair identity) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
host- The target host name or addressport- The target portusername- Usernameidentity- TheKeyPairidentity- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(InetAddress host, String username, String password) throws IOException
Creates a session on the default port and logs in using the provided credentials- Parameters:
host- The target hostInetAddressusername- Usernamepassword- Password- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(InetAddress host, int port, String username, String password) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
host- The target hostInetAddressport- The target portusername- Usernamepassword- Password- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(InetAddress host, String username, KeyPair identity) throws IOException
Creates a session on the default port and logs in using the provided credentials- Parameters:
host- The target hostInetAddressusername- Usernameidentity- TheKeyPairidentity- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
default ClientSession sessionLogin(InetAddress host, int port, String username, KeyPair identity) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
host- The target hostInetAddressport- The target portusername- Usernameidentity- TheKeyPairidentity- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
ClientSession sessionLogin(SocketAddress target, String username, String password) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
target- The targetSocketAddressusername- Usernamepassword- Password- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
ClientSession sessionLogin(SocketAddress target, String username, KeyPair identity) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
target- The targetSocketAddressusername- Usernameidentity- TheKeyPairidentity- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
ClientSession sessionLogin(String uri, String password) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
uri- The target uripassword- Password- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
sessionLogin
ClientSession sessionLogin(String uri, KeyPair identity) throws IOException
Creates a session and logs in using the provided credentials- Parameters:
uri- The target uriidentity- TheKeyPairidentity- Returns:
- Created
ClientSession - Throws:
IOException- If failed to login or authenticate
-
-