com.quincy.core.SFTPConfiguration Maven / Gradle / Ivy
The newest version!
package com.quincy.core;
import org.apache.commons.pool2.impl.AbandonedConfig;
import org.apache.commons.pool2.impl.GenericObjectPoolConfig;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.quincy.core.sftp.ChannelSftpSource;
import com.quincy.core.sftp.PoolableChannelSftpFactory;
import com.quincy.core.sftp.impl.ChannelSftpSourceImpl;
@Configuration
public class SFTPConfiguration {
@Autowired
private GenericObjectPoolConfig poolCfg;
@Autowired
private AbandonedConfig abandonedCfg;
@Value("${sftp.host}")
private String host;
@Value("${sftp.port}")
private int port;
@Value("${sftp.username}")
private String username;
@Value("${sftp.privateKey}")
private String privateKey;
@Bean
public ChannelSftpSource createChannelSftpSource() {
PoolableChannelSftpFactory f = new PoolableChannelSftpFactory(host, port, username, privateKey);
ChannelSftpSource s = new ChannelSftpSourceImpl(f, poolCfg, abandonedCfg);
return s;
}
}