final case class SecureFtpSettings(host: String, port: Int, credentials: FtpCredentials, sftpIdentity: Option[SftpIdentity], strictHostKeyChecking: Boolean, knownHosts: Option[String], proxy: Option[Proxy], sshConfig: Config) extends Product with Serializable
Settings to connect to a secure Ftp server (Ftp over ssh)
- host
hostname of ftp server (ipAddress / dnsName)
- port
port of communication used by the server
- credentials
auth credentials
- sftpIdentity
private/public key config to use when connecting
- strictHostKeyChecking
sets whether to use strict host key checking.
- knownHosts
known hosts file to be used when connecting
- sshConfig
configuration of ssh client
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SecureFtpSettings
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
SecureFtpSettings(host: String, port: Int, credentials: FtpCredentials, sftpIdentity: Option[SftpIdentity], strictHostKeyChecking: Boolean, knownHosts: Option[String], proxy: Option[Proxy], sshConfig: Config)
- host
hostname of ftp server (ipAddress / dnsName)
- port
port of communication used by the server
- credentials
auth credentials
- sftpIdentity
private/public key config to use when connecting
- strictHostKeyChecking
sets whether to use strict host key checking.
- knownHosts
known hosts file to be used when connecting
- sshConfig
configuration of ssh client
Value Members
- val credentials: FtpCredentials
- val host: String
- val knownHosts: Option[String]
- val port: Int
- val proxy: Option[Proxy]
- val sftpIdentity: Option[SftpIdentity]
- val sshConfig: Config
- val strictHostKeyChecking: Boolean