All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quincy.core.SFTPDeamon Maven / Gradle / Ivy

The newest version!
package com.quincy.core;

import javax.annotation.PreDestroy;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import com.quincy.core.sftp.ChannelSftpSource;

@Component
public class SFTPDeamon {
	@Autowired
	private ChannelSftpSource channelSftpSource;

	@PreDestroy
	public void destroy() {
		if(channelSftpSource!=null)
			channelSftpSource.close();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy