Package com.mindtree.techworks.infix.pluginscommon.test.ssh.beans

Examples of com.mindtree.techworks.infix.pluginscommon.test.ssh.beans.PlatformConfiguration


      ostr.close();
    }
  }

  private void createPlatformConfig () throws IOException {
    PlatformConfiguration platformConfig = new PlatformConfiguration();
    platformConfig.setNativeProcessProvider(com.sshtools.daemon.platform.UnsupportedShellProcessProvider.class.getName());
//    platformConfig.setNativeAuthenticationProvider("com.sshtools.daemon.platform.DummyAuthenticationProvider");
    platformConfig.setNativeAuthenticationProvider(com.mindtree.techworks.infix.pluginscommon.test.ssh.JunitDummyAuthenticationProvider.class.getName());
    platformConfig.setNativeFileSystemProvider(com.sshtools.daemon.vfs.VirtualFileSystem.class.getName());
    PlatformConfiguration.VFSRoot root = new PlatformConfiguration.VFSRoot();
    root.setPath(baseDir.getRoot().getAbsolutePath().replace('\\', '/'));
    platformConfig.setVfsRoot(root);

    marshall(platformConfig, "platform.xml");
  }
View Full Code Here

TOP

Related Classes of com.mindtree.techworks.infix.pluginscommon.test.ssh.beans.PlatformConfiguration

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.