Package com.sshtools.daemon.vfs

Examples of com.sshtools.daemon.vfs.VFSMount


*/
public class JunitDummyAuthenticationProvider extends DummyAuthenticationProvider {

  @Override
  public String getHomeDirectory (String username) throws IOException {
    VFSMount vfsroot = ((PlatformConfiguration) ConfigurationLoader.getConfiguration(PlatformConfiguration.class)).getVFSRoot();
    String base = vfsroot.getPath();
    File homeDir = new File (base + "/home/" + username);
    return homeDir.getAbsolutePath().replace('\\', '/');
  }
View Full Code Here

TOP

Related Classes of com.sshtools.daemon.vfs.VFSMount

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.