Packages

final class FtpSettings extends FtpFileSettings

FTP settings

Source
model.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FtpSettings
  2. FtpFileSettings
  3. RemoteFileSettings
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val autodetectUTF8: Boolean
  2. val binary: Boolean
    Definition Classes
    FtpSettingsFtpFileSettings
  3. val configureConnection: (FTPClient) => Unit
  4. val credentials: FtpCredentials
    Definition Classes
    FtpSettingsRemoteFileSettings
  5. val host: InetAddress
    Definition Classes
    FtpSettingsRemoteFileSettings
  6. val passiveMode: Boolean
    Definition Classes
    FtpSettingsFtpFileSettings
  7. val port: Int
    Definition Classes
    FtpSettingsRemoteFileSettings
  8. val proxy: Option[Proxy]
  9. def toString(): String
    Definition Classes
    FtpSettings → AnyRef → Any
  10. def withAutodetectUTF8(value: Boolean): FtpSettings
  11. def withBinary(value: Boolean): FtpSettings
  12. def withConfigureConnection(value: (FTPClient) => Unit): FtpSettings

    Scala API: Sets the configure connection callback.

  13. def withConfigureConnectionConsumer(configureConnection: Consumer[FTPClient]): FtpSettings

    Java API: Sets the configure connection callback.

  14. def withCredentials(value: FtpCredentials): FtpSettings
  15. def withHost(value: InetAddress): FtpSettings
  16. def withPassiveMode(value: Boolean): FtpSettings
  17. def withPort(value: Int): FtpSettings
  18. def withProxy(value: Proxy): FtpSettings