Package net.sourceforge.fullsync.fs.filesystems

Examples of net.sourceforge.fullsync.fs.filesystems.SFTPFileSystem


  public FileSystemManager() {
    schemes = new Hashtable<String, FileSystem>();
    schemes.put("file", new LocalFileSystem());
    schemes.put("ftp", new FTPFileSystem());
    schemes.put("sftp", new SFTPFileSystem());
    schemes.put("smb", new SmbFileSystem());

    buffering = new Hashtable<String, SyncFilesBufferingProvider>();
    buffering.put("syncfiles", new SyncFilesBufferingProvider());
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.fullsync.fs.filesystems.SFTPFileSystem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.