org.xbib.io.ftp.fs.SecurityMode 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 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