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

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

There is a newer version: 2.6.0
Show newest version
package org.xbib.io.ftp.fs;

/**
 * The possible FTPS security modes.
 */
public enum SecurityMode {
    /**
     * Indicates implicit security should be used.
     */
    IMPLICIT(true),
    /**
     * Indicates explicit security should be used.
     */
    EXPLICIT(false),;

    final boolean isImplicit;

    SecurityMode(boolean isImplicit) {
        this.isImplicit = isImplicit;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy