All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.io.ftp.fs.FTPSFileSystemProvider Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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