List of usage examples for org.apache.commons.vfs2.provider.sftp PrincipalProvidedSessionSftpFileProvider PrincipalProvidedSessionSftpFileProvider
PrincipalProvidedSessionSftpFileProvider
From source file:org.helios.ember.sftp.SFTPFileSystemManager.java
/** * Creates a new SFTPFileSystemManager//from w w w .j av a 2s.c om * @throws FileSystemException thrown on any error initializing the file system manager */ public SFTPFileSystemManager() throws FileSystemException { super(); addProvider("sftp", new PrincipalProvidedSessionSftpFileProvider()); super.init(); }