Secure iNet Factory

Uses of Class
com.jscape.inet.ssh.util.SshParameters

Packages that use SshParameters
com.jscape.filetransfer Contains wrapper classes for all file transfer protocols including FTP, SFTP (FTP over SSH) and FTPS (FTP over SSL) 
com.jscape.inet.httpssh Contains classes for securely communicating with HTTP servers using an encrypted SSH tunnel. 
com.jscape.inet.imapssh Contains classes for securely communicating with an IMAP server using an encrypted SSH tunnel. 
com.jscape.inet.ipclientssh Contains classes for creating secure TCP/IP client applications using an SSH encrypted tunnel. 
com.jscape.inet.nntpssh Contains classes for securely communicating with NNTP (Network News Transport Protocol) servers using an encrypted SSH tunnel. 
com.jscape.inet.popssh Contains classes for securely communicating with POP3 (Post Office Protocol version 3) servers using an encrypted SSH tunnel. 
com.jscape.inet.scp Contains client classes for communicating with an SSH server using SCP protocol (Secure Copy over SSH). 
com.jscape.inet.sftp Contains client classes for communicating with a server using SFTP protocol (FTP over SSH) 
com.jscape.inet.smtpssh Contains classes for securely communicating with SMTP (Simple Mail Transport Protocol) servers using an encrypted SSH tunnel. 
com.jscape.inet.ssh Contains classes for communicating with SSH (Secure Shell) servers. 
com.jscape.inet.ssh.util Contains utility classes for use in authenticating with an SSH server. 
com.jscape.inet.telnetssh Contains classes for securely communicating with telnet servers using an encryted SSH tunnel. 
 

Uses of SshParameters in com.jscape.filetransfer
 

Constructors in com.jscape.filetransfer with parameters of type SshParameters
SftpTransfer(SshParameters params)
          Creates SftpTransfer instance.
SftpTransfer(SshParameters parameters, SftpConfiguration sftpConfiguration)
          Creates SftpTransfer instance.
 

Uses of SshParameters in com.jscape.inet.httpssh
 

Constructors in com.jscape.inet.httpssh with parameters of type SshParameters
HttpSsh(SshParameters sshParameters)
          Creates a new HttpSsh instance.
 

Uses of SshParameters in com.jscape.inet.imapssh
 

Methods in com.jscape.inet.imapssh that return SshParameters
 SshParameters ImapSsh.getSshParameters()
          Gets SSH parameters used in establishing connection with SSH server.
 

Methods in com.jscape.inet.imapssh with parameters of type SshParameters
 void ImapSsh.setSshParameters(SshParameters parameters)
          Sets SSH parameters used in establishing connection with SSH server.
 

Constructors in com.jscape.inet.imapssh with parameters of type SshParameters
ImapSsh(SshParameters sshParameters, java.lang.String hostname, java.lang.String username, java.lang.String password)
          Creates a new ImapSsh instance.
 

Uses of SshParameters in com.jscape.inet.ipclientssh
 

Constructors in com.jscape.inet.ipclientssh with parameters of type SshParameters
IpClientSsh(SshParameters sshParameters, java.lang.String hostname, int port)
          Creates a new IpClientSsh instance.
IpClientSsh(SshParameters sshParameters, java.lang.String hostname, int port, int timeout)
          Creates a new IpClientSsh instance.
IpClientSsh(SshParameters sshParameters, java.lang.String hostname, int port, int timeout, SshConfiguration config)
          Creates new IpClientSsh instance.
SshTunneler(int portLocal, SshParameters params, java.lang.String remoteIp, int remotePort)
          Creates a new instance of SshTunneler local service.
SshTunnelerConnection(java.net.Socket socket, SshParameters params, java.lang.String remoteIp, int remotePort)
          Creates a new Ssh tunneler connection.
 

Uses of SshParameters in com.jscape.inet.nntpssh
 

Methods in com.jscape.inet.nntpssh that return SshParameters
 SshParameters NntpSsh.getSshParameters()
          Gets SSH parameters used in establishing connection with SSH server.
 

Methods in com.jscape.inet.nntpssh with parameters of type SshParameters
 void NntpSsh.setSshParameters(SshParameters parameters)
          Sets SSH parameters used in establishing connection with SSH server.
 

Constructors in com.jscape.inet.nntpssh with parameters of type SshParameters
NntpSsh(SshParameters sshParameters, java.lang.String hostname)
          Creates a new NntpSsh instance.
 

Uses of SshParameters in com.jscape.inet.popssh
 

Methods in com.jscape.inet.popssh that return SshParameters
 SshParameters PopSsh.getSshParameters()
          Gets SSH parameters used in establishing connection with SSH server.
 

Methods in com.jscape.inet.popssh with parameters of type SshParameters
 void PopSsh.setSshParameters(SshParameters parameters)
          Sets SSH parameters used in establishing connection with SSH server.
 

Constructors in com.jscape.inet.popssh with parameters of type SshParameters
PopSsh(SshParameters sshParameters, java.lang.String hostname, java.lang.String username, java.lang.String password)
          Constructs a new PopSsh instance.
 

Uses of SshParameters in com.jscape.inet.scp
 

Methods in com.jscape.inet.scp that return SshParameters
 SshParameters Scp.getParameters()
          Returns current SSH parameters.
 

Constructors in com.jscape.inet.scp with parameters of type SshParameters
Scp(SshParameters parameters)
          Creates a new client instance.
Scp(SshParameters parameters, SshConfiguration configuration)
          Creates a new client instance.
 

Uses of SshParameters in com.jscape.inet.sftp
 

Methods in com.jscape.inet.sftp that return SshParameters
 SshParameters Sftp.getSshParameters()
          Get SSH parameters.
 

Constructors in com.jscape.inet.sftp with parameters of type SshParameters
Sftp(SshParameters params)
          Creates a new client instance.
Sftp(SshParameters params, java.io.File localDir)
          Creates a new client instance.
Sftp(SshParameters params, java.io.File localDir, SftpConfiguration config)
          Creates a new client instance.
Sftp(SshParameters params, SftpConfiguration config)
          Creates a new client instance.
 

Uses of SshParameters in com.jscape.inet.smtpssh
 

Methods in com.jscape.inet.smtpssh that return SshParameters
 SshParameters SmtpSsh.getSshParameters()
          Gets SSH parameters used in establishing connection with SSH server.
 

Methods in com.jscape.inet.smtpssh with parameters of type SshParameters
 void SmtpSsh.setSshParameters(SshParameters parameters)
          Sets SSH parameters used in establishing connection with SSH server.
 

Constructors in com.jscape.inet.smtpssh with parameters of type SshParameters
SmtpSsh(SshParameters sshParameters, java.lang.String hostname)
          Creates a new SmtpSsh instance.
 

Uses of SshParameters in com.jscape.inet.ssh
 

Constructors in com.jscape.inet.ssh with parameters of type SshParameters
Ssh(SshParameters sshParams)
          Constructs a new Ssh instance
Ssh(SshParameters sshParams, SshConfiguration config)
          Constructs a new Ssh instance.
SshSession(SshParameters sshParams)
          Creates a new SshSession instance.
 

Uses of SshParameters in com.jscape.inet.ssh.util
 

Constructors in com.jscape.inet.ssh.util with parameters of type SshParameters
SshParameters(SshParameters that)
          Copy constructor.
 

Uses of SshParameters in com.jscape.inet.telnetssh
 

Methods in com.jscape.inet.telnetssh that return SshParameters
 SshParameters TelnetSsh.getSshParameters()
          Gets SSH parameters used in establishing connection with SSH server.
 

Methods in com.jscape.inet.telnetssh with parameters of type SshParameters
 void TelnetSsh.setSshParameters(SshParameters parameters)
          Sets SSH parameters used in establishing connection with SSH server.
 

Constructors in com.jscape.inet.telnetssh with parameters of type SshParameters
TelnetSsh(SshParameters sshParameters, java.lang.String hostname)
          Creates a new TelnetSsh instance.
 


Secure iNet Factory

Copyright © JSCAPE LLC. 1999-2011. All Rights Reserved