Class SftpSession
java.lang.Object
org.springframework.integration.sftp.session.SftpSession
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Session<org.apache.sshd.sftp.client.SftpClient.DirEntry>
public class SftpSession
extends Object
implements Session<org.apache.sshd.sftp.client.SftpClient.DirEntry>
Default SFTP
Session
implementation. Wraps a MINA SSHD session instance.- Since:
- 2.0
- Author:
- Josh Long, Mario Gray, Mark Fisher, Oleg Zhurakousky, Gary Russell, Artem Bilan, Christian Tzolov, Darryl Smith
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
append
(InputStream inputStream, String destination) Append to a file.void
close()
Stream<org.apache.sshd.sftp.client.SftpClient.DirEntry>
boolean
Check if the remote file or directory exists.boolean
Invoke after closing the InputStream fromSession.readRaw(String)
.org.apache.sshd.sftp.client.SftpClient
Get the underlying client library's client instance for this session.Return the host:port pair this session is connected to.boolean
isOpen()
org.apache.sshd.sftp.client.SftpClient.DirEntry[]
String[]
boolean
void
read
(String source, OutputStream os) Retrieve a remote file as a rawInputStream
.boolean
void
boolean
Remove a remote directory.boolean
test()
Test the session is still alive, e.g.void
write
(InputStream inputStream, String destination)
-
Constructor Details
-
SftpSession
public SftpSession(org.apache.sshd.sftp.client.SftpClient sftpClient)
-
-
Method Details
-
remove
- Specified by:
remove
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
list
- Specified by:
list
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
listNames
- Specified by:
listNames
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
doList
public Stream<org.apache.sshd.sftp.client.SftpClient.DirEntry> doList(String path) throws IOException - Throws:
IOException
-
read
- Specified by:
read
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
readRaw
Description copied from interface:Session
Retrieve a remote file as a rawInputStream
.- Specified by:
readRaw
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Parameters:
source
- The path of the remote file.- Returns:
- The raw inputStream.
- Throws:
IOException
- Any IOException.
-
finalizeRaw
public boolean finalizeRaw()Description copied from interface:Session
Invoke after closing the InputStream fromSession.readRaw(String)
. Required by some session providers.- Specified by:
finalizeRaw
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Returns:
- true if successful.
-
write
- Specified by:
write
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
append
Description copied from interface:Session
Append to a file.- Specified by:
append
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Parameters:
inputStream
- the stream.destination
- the destination.- Throws:
IOException
- an IO Exception.
-
close
public void close() -
isOpen
public boolean isOpen() -
rename
- Specified by:
rename
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
mkdir
- Specified by:
mkdir
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Throws:
IOException
-
rmdir
Description copied from interface:Session
Remove a remote directory.- Specified by:
rmdir
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Parameters:
remoteDirectory
- The directory.- Returns:
- True if the directory was removed.
- Throws:
IOException
- an IO exception.
-
exists
Description copied from interface:Session
Check if the remote file or directory exists. -
getClientInstance
public org.apache.sshd.sftp.client.SftpClient getClientInstance()Description copied from interface:Session
Get the underlying client library's client instance for this session. Returns anObject
to avoid significant changes to -file, -ftp, -sftp modules, which would be required if we added another generic parameter. Implementations should narrow the return type.- Specified by:
getClientInstance
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Returns:
- The client instance.
-
getHostPort
Description copied from interface:Session
Return the host:port pair this session is connected to.- Specified by:
getHostPort
in interfaceSession<org.apache.sshd.sftp.client.SftpClient.DirEntry>
- Returns:
- the host:port pair this session is connected to.
-
test
public boolean test()Description copied from interface:Session
Test the session is still alive, e.g. when checking out from a pool. The default implementation simply delegates toSession.isOpen()
.
-