Class SftpInboundChannelAdapterSpec
java.lang.Object
org.springframework.integration.dsl.IntegrationComponentSpec<S,H>
org.springframework.integration.dsl.MessageSourceSpec<S,MS>
org.springframework.integration.file.dsl.RemoteFileInboundChannelAdapterSpec<org.apache.sshd.sftp.client.SftpClient.DirEntry,SftpInboundChannelAdapterSpec,SftpInboundFileSynchronizingMessageSource>
org.springframework.integration.sftp.dsl.SftpInboundChannelAdapterSpec
- All Implemented Interfaces:
DisposableBean
,FactoryBean<SftpInboundFileSynchronizingMessageSource>
,InitializingBean
,Lifecycle
,Phased
,SmartLifecycle
,ComponentsRegistration
public class SftpInboundChannelAdapterSpec
extends RemoteFileInboundChannelAdapterSpec<org.apache.sshd.sftp.client.SftpClient.DirEntry,SftpInboundChannelAdapterSpec,SftpInboundFileSynchronizingMessageSource>
- Since:
- 5.0
- Author:
- Artem Bilan
-
Field Summary
Fields inherited from class org.springframework.integration.file.dsl.RemoteFileInboundChannelAdapterSpec
synchronizer
Fields inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
logger, PARSER, target
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
ModifierConstructorDescriptionprotected
SftpInboundChannelAdapterSpec
(SessionFactory<org.apache.sshd.sftp.client.SftpClient.DirEntry> sessionFactory, Comparator<File> comparator) -
Method Summary
Modifier and TypeMethodDescriptionpatternFilter
(String pattern) Configure a simple pattern filter (e.g.regexFilter
(String regex) Configure a regex pattern filter (e.g.Methods inherited from class org.springframework.integration.file.dsl.RemoteFileInboundChannelAdapterSpec
autoCreateLocalDirectory, deleteRemoteFiles, filter, filterExpression, filterFunction, getComponentsToRegister, localDirectory, localFilename, localFilenameExpression, localFilenameExpression, localFilter, maxFetchSize, metadataStorePrefix, preserveTimestamp, remoteComparator, remoteDirectory, remoteDirectoryExpression, remoteFileMetadataStore, remoteFileSeparator, scanner, temporaryFileSuffix
Methods inherited from class org.springframework.integration.dsl.MessageSourceSpec
messageHeaders
Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, afterPropertiesSet, destroy, doGet, getId, getObject, getObjectType, getPhase, id, isAutoStartup, isRunning, start, stop, stop
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.FactoryBean
isSingleton
-
Constructor Details
-
SftpInboundChannelAdapterSpec
protected SftpInboundChannelAdapterSpec(SessionFactory<org.apache.sshd.sftp.client.SftpClient.DirEntry> sessionFactory, @Nullable Comparator<File> comparator)
-
-
Method Details
-
patternFilter
Description copied from class:RemoteFileInboundChannelAdapterSpec
Configure a simple pattern filter (e.g. '*.txt').- Specified by:
patternFilter
in classRemoteFileInboundChannelAdapterSpec<org.apache.sshd.sftp.client.SftpClient.DirEntry,
SftpInboundChannelAdapterSpec, SftpInboundFileSynchronizingMessageSource> - Parameters:
pattern
- the Ant style pattern filter to use.- Returns:
- the spec.
- See Also:
-
regexFilter
Description copied from class:RemoteFileInboundChannelAdapterSpec
Configure a regex pattern filter (e.g. '[0-9].*.txt').- Specified by:
regexFilter
in classRemoteFileInboundChannelAdapterSpec<org.apache.sshd.sftp.client.SftpClient.DirEntry,
SftpInboundChannelAdapterSpec, SftpInboundFileSynchronizingMessageSource> - Parameters:
regex
- the RegExp pattern to use.- Returns:
- the spec.
- See Also:
-