public FTPMount(LaunchSession launchSession, VFSStore store) {
super(launchSession, store);
}
public FileSystemOptions getOptions(URI uri) {
FileSystemOptions options = new FileSystemOptions();
FtpFileSystemConfigBuilder c = FtpFileSystemConfigBuilder.getInstance();
String mode = Property.getProperty(new ResourceKey("ftp.mode", this.getNetworkPlace().getResourceType(), this.getNetworkPlace().getResourceId()));
c.setPassiveMode(options, mode.equals("passive"));
int idleTimeout = Property.getPropertyInt(new ResourceKey("ftp.idleTimeout", getNetworkPlace().getResourceType(), getNetworkPlace().getResourceId()));
c.setIdleTimeout(options, idleTimeout);