Package org.springframework.integration.sftp.session

Examples of org.springframework.integration.sftp.session.DefaultSftpSessionFactory


      file.delete();
    }
  }

  public DefaultSftpSessionFactory getSessionFactory() {
    DefaultSftpSessionFactory factory = new DefaultSftpSessionFactory(true);
    factory.setHost(this.host);
    factory.setPort(this.port);
    factory.setUser("foo");
    factory.setPassword("foo");
    return factory;
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.sftp.session.DefaultSftpSessionFactory

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.