Package org.springframework.integration.ftp.session

Examples of org.springframework.integration.ftp.session.DefaultFtpSessionFactory


    return targetLocalDirectory.getAbsolutePath() + File.separator;
  }

  @Bean
  public DefaultFtpSessionFactory ftpSessionFactory() {
    DefaultFtpSessionFactory factory = new DefaultFtpSessionFactory();
    factory.setHost("localhost");
    factory.setPort(this.ftpPort);
    factory.setUsername("foo");
    factory.setPassword("foo");
    return factory;
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.ftp.session.DefaultFtpSessionFactory

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.