org.xbib.io.ftp.fs.FTPSFileSystemProvider 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;
import java.util.Map;
/**
* A provider for FTPS file systems.
*/
public class FTPSFileSystemProvider extends FTPFileSystemProvider {
/**
* Returns the URI scheme that identifies this provider: {@code ftps}.
*/
@Override
public String getScheme() {
return "ftps";
}
@Override
FTPSEnvironment wrapEnvironment(Map env) {
return FTPSEnvironment.wrap(env);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy