org.xbib.io.ftp.fs.TransferOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftp-fs Show documentation
Show all versions of ftp-fs Show documentation
Java FTP client, Java FTP NIO file system, Groovy FTP client
package org.xbib.io.ftp.fs;
/**
* The base class of option combinations that support file transfers.
*/
abstract class TransferOptions {
public final FileType fileType;
public final FileStructure fileStructure;
public final FileTransferMode fileTransferMode;
TransferOptions(FileType fileType, FileStructure fileStructure, FileTransferMode fileTransferMode) {
this.fileType = fileType;
this.fileStructure = fileStructure;
this.fileTransferMode = fileTransferMode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy