Uses of Class
org.springframework.integration.file.remote.RemoteFileTemplate
Package
Description
Provides File Components support for Spring Integration Java DSL.
Base package for supporting remote files.
Provides classes supporting remote file gateways.
Provides classes supporting remote file message handlers.
Provides FTP Components for the Java DSL.
Provides classes supporting FTP gateways.
Provides classes supporting inbound endpoints.
Provides classes for the FTP outbound channel adapter.
Provides classes supporting FTP sessions.
Provides SFTP Components for the Java DSL.
Provides classes supporting SFTP gateways.
Provides classes supporting inbound endpoints.
Provides classes for the SFTP outbound channel adapter.
Provides classes supporting SFTP sessions.
Provides SMB Components for the Java DSL.
Inbound Channel Adapters implementations for SMB protocol.
Outbound Channel Adapter implementations for SMB protocol.
SMB Remote Session abstraction support classes.
-
Uses of RemoteFileTemplate in org.springframework.integration.file.dsl
ModifierConstructorDescriptionprotected
FileTransferringMessageHandlerSpec
(RemoteFileTemplate<F> remoteFileTemplate) protected
FileTransferringMessageHandlerSpec
(RemoteFileTemplate<F> remoteFileTemplate, FileExistsMode fileExistsMode) -
Uses of RemoteFileTemplate in org.springframework.integration.file.remote
Modifier and TypeMethodDescriptionprotected RemoteFileTemplate<? extends F>
AbstractRemoteFileStreamingMessageSource.getRemoteFileTemplate()
ModifierConstructorDescriptionprotected
AbstractRemoteFileStreamingMessageSource
(RemoteFileTemplate<? extends F> template, Comparator<? extends F> comparator) -
Uses of RemoteFileTemplate in org.springframework.integration.file.remote.gateway
Modifier and TypeMethodDescriptionprotected final RemoteFileTemplate<F>
AbstractRemoteFileOutboundGateway.getRemoteFileTemplate()
ModifierConstructorDescriptionAbstractRemoteFileOutboundGateway
(RemoteFileTemplate<F> remoteFileTemplate, String command, String expression) Construct an instance with the supplied remote file template, a command ('ls', 'get' etc), and an expression to determine the filename.AbstractRemoteFileOutboundGateway
(RemoteFileTemplate<F> remoteFileTemplate, AbstractRemoteFileOutboundGateway.Command command, String expressionArg) Construct an instance with the supplied remote file template, a command ('ls', 'get' etc), and an expression to determine the filename.AbstractRemoteFileOutboundGateway
(RemoteFileTemplate<F> remoteFileTemplate, MessageSessionCallback<F, ?> messageSessionCallback) Construct an instance with the supplied remote file template and callback for performing operations on the session. -
Uses of RemoteFileTemplate in org.springframework.integration.file.remote.handler
Modifier and TypeFieldDescriptionprotected final RemoteFileTemplate<F>
FileTransferringMessageHandler.remoteFileTemplate
Modifier and TypeMethodDescriptionprotected void
FileTransferringMessageHandler.doChmod
(RemoteFileTemplate<F> remoteFileTemplate, String path, int chmod) Set the mode on the remote file after transfer; the default implementation does nothing.ModifierConstructorDescriptionFileTransferringMessageHandler
(RemoteFileTemplate<F> remoteFileTemplate) FileTransferringMessageHandler
(RemoteFileTemplate<F> remoteFileTemplate, FileExistsMode mode) -
Uses of RemoteFileTemplate in org.springframework.integration.ftp.dsl
Modifier and TypeMethodDescriptionFtp.inboundStreamingAdapter
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate) AFtpStreamingInboundChannelAdapterSpec
factory for an inbound channel adapter spec.Ftp.inboundStreamingAdapter
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, Comparator<org.apache.commons.net.ftp.FTPFile> receptionOrderComparator) AFtpStreamingInboundChannelAdapterSpec
factory for an inbound channel adapter spec.static FtpOutboundGatewaySpec
Ftp.outboundGateway
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, String command, String expression) Produce aFtpOutboundGatewaySpec
based on theRemoteFileTemplate
,AbstractRemoteFileOutboundGateway.Command
andexpression
for the remoteFilePath.static FtpOutboundGatewaySpec
Ftp.outboundGateway
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, AbstractRemoteFileOutboundGateway.Command command, String expression) Produce aFtpOutboundGatewaySpec
based on theRemoteFileTemplate
,AbstractRemoteFileOutboundGateway.Command
andexpression
for the remoteFilePath.ModifierConstructorDescriptionprotected
FtpStreamingInboundChannelAdapterSpec
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, Comparator<org.apache.commons.net.ftp.FTPFile> comparator) -
Uses of RemoteFileTemplate in org.springframework.integration.ftp.gateway
ModifierConstructorDescriptionFtpOutboundGateway
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, String command) Construct an instance with the supplied remote file template and command ('ls', 'nlst', 'put' or 'mput').FtpOutboundGateway
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, String command, String expression) Construct an instance with the supplied remote file template, a command ('ls', 'get' etc), and an expression to determine the filename.FtpOutboundGateway
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, MessageSessionCallback<org.apache.commons.net.ftp.FTPFile, ?> messageSessionCallback) Construct an instance with the supplied remote file template and callback for performing operations on the session. -
Uses of RemoteFileTemplate in org.springframework.integration.ftp.inbound
ModifierConstructorDescriptionFtpStreamingMessageSource
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> template) Construct an instance with the supplied template.FtpStreamingMessageSource
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> template, Comparator<org.apache.commons.net.ftp.FTPFile> comparator) Construct an instance with the supplied template and comparator. -
Uses of RemoteFileTemplate in org.springframework.integration.ftp.outbound
Modifier and TypeMethodDescriptionprotected void
FtpMessageHandler.doChmod
(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, String path, int chmod) -
Uses of RemoteFileTemplate in org.springframework.integration.ftp.session
Modifier and TypeClassDescriptionclass
FTP version ofRemoteFileTemplate
providing type-safe access to the underlying FTPClient object. -
Uses of RemoteFileTemplate in org.springframework.integration.sftp.dsl
Modifier and TypeMethodDescriptionSftp.inboundStreamingAdapter
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate) AnSftpStreamingInboundChannelAdapterSpec
factory for an inbound channel adapter spec.Sftp.inboundStreamingAdapter
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, Comparator<org.apache.sshd.sftp.client.SftpClient.DirEntry> receptionOrderComparator) AnSftpStreamingInboundChannelAdapterSpec
factory for an inbound channel adapter spec.static SftpOutboundGatewaySpec
Sftp.outboundGateway
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, String command, String expression) Produce aSftpOutboundGatewaySpec
based on theRemoteFileTemplate
,AbstractRemoteFileOutboundGateway.Command
andexpression
for the remoteFilePath.static SftpOutboundGatewaySpec
Sftp.outboundGateway
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, AbstractRemoteFileOutboundGateway.Command command, String expression) Produce aSftpOutboundGatewaySpec
based on theRemoteFileTemplate
,AbstractRemoteFileOutboundGateway.Command
andexpression
for the remoteFilePath.ModifierConstructorDescriptionprotected
SftpStreamingInboundChannelAdapterSpec
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, Comparator<org.apache.sshd.sftp.client.SftpClient.DirEntry> comparator) -
Uses of RemoteFileTemplate in org.springframework.integration.sftp.gateway
ModifierConstructorDescriptionSftpOutboundGateway
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, String command, String expression) Construct an instance with the supplied remote file template, a command ('ls', 'get' etc), and an expression to determine the filename.SftpOutboundGateway
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, MessageSessionCallback<org.apache.sshd.sftp.client.SftpClient.DirEntry, ?> messageSessionCallback) Construct an instance with the supplied remote file template and callback for performing operations on the session. -
Uses of RemoteFileTemplate in org.springframework.integration.sftp.inbound
ModifierConstructorDescriptionSftpStreamingMessageSource
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> template) Construct an instance with the supplied template.SftpStreamingMessageSource
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> template, Comparator<org.apache.sshd.sftp.client.SftpClient.DirEntry> comparator) Construct an instance with the supplied template and comparator. -
Uses of RemoteFileTemplate in org.springframework.integration.sftp.outbound
Modifier and TypeMethodDescriptionprotected void
SftpMessageHandler.doChmod
(RemoteFileTemplate<org.apache.sshd.sftp.client.SftpClient.DirEntry> remoteFileTemplate, String path, int chmod) -
Uses of RemoteFileTemplate in org.springframework.integration.sftp.session
Modifier and TypeClassDescriptionclass
SFTP version ofRemoteFileTemplate
providing type-safe access to the underlying ChannelSftp object. -
Uses of RemoteFileTemplate in org.springframework.integration.smb.dsl
Modifier and TypeMethodDescriptionSmb.inboundStreamingAdapter
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate) ASmbStreamingInboundChannelAdapterSpec
factory for an inbound channel adapter spec.Smb.inboundStreamingAdapter
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, Comparator<jcifs.smb.SmbFile> receptionOrderComparator) ASmbStreamingInboundChannelAdapterSpec
factory for an inbound channel adapter spec.static SmbOutboundGatewaySpec
Smb.outboundGateway
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, String command, String expression) Produce aSmbOutboundGatewaySpec
based on theRemoteFileTemplate
,AbstractRemoteFileOutboundGateway.Command
andexpression
for the remoteFilePath.static SmbOutboundGatewaySpec
Smb.outboundGateway
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, AbstractRemoteFileOutboundGateway.Command command, String expression) Produce aSmbOutboundGatewaySpec
based on theRemoteFileTemplate
,AbstractRemoteFileOutboundGateway.Command
andexpression
for the remoteFilePath.ModifierConstructorDescriptionprotected
SmbStreamingInboundChannelAdapterSpec
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, Comparator<jcifs.smb.SmbFile> comparator) -
Uses of RemoteFileTemplate in org.springframework.integration.smb.inbound
ModifierConstructorDescriptionSmbStreamingMessageSource
(RemoteFileTemplate<jcifs.smb.SmbFile> template) Construct an instance with the supplied template.SmbStreamingMessageSource
(RemoteFileTemplate<jcifs.smb.SmbFile> template, Comparator<jcifs.smb.SmbFile> comparator) Construct an instance with the supplied template and comparator. -
Uses of RemoteFileTemplate in org.springframework.integration.smb.outbound
ModifierConstructorDescriptionSmbOutboundGateway
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, String command) Construct an instance with the supplied remote file template and command ('ls', 'nlst', 'put' or 'mput').SmbOutboundGateway
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, String command, String expression) Construct an instance with the supplied remote file template, a command ('ls', 'get' etc), and an expression to determine the filename.SmbOutboundGateway
(RemoteFileTemplate<jcifs.smb.SmbFile> remoteFileTemplate, MessageSessionCallback<jcifs.smb.SmbFile, ?> messageSessionCallback) Construct an instance with the supplied remote file template and callback for performing operations on the session. -
Uses of RemoteFileTemplate in org.springframework.integration.smb.session