Uses of Interface
org.springframework.integration.file.filters.FileListFilter
Packages that use FileListFilter
Package
Description
Base package for File support.
Provides classes for configuration - parsers, namespace handlers, factory beans.
Provides File Components support for Spring Integration Java DSL.
Provides classes supporting file filtering.
Provides classes supporting file locking.
Base package for supporting remote files.
Provides classes supporting remote file gateways.
Provides classes supporting the synchronization of remote and
local file directories.
Provides classes for configuration - parsers, namespace handlers.
Provides classes supporting FTP file filtering.
Provides classes for configuration - parsers, namespace handlers.
Provides classes supporting SFTP file filtering.
SMB-specific file list filter classes.
SMB Namespace support classes.
-
Uses of FileListFilter in org.springframework.integration.file
Methods in org.springframework.integration.file that return FileListFilterModifier and TypeMethodDescriptionprotected FileListFilter<File>DefaultDirectoryScanner.getFilter()Methods in org.springframework.integration.file with parameters of type FileListFilterModifier and TypeMethodDescriptionvoidDefaultDirectoryScanner.setFilter(FileListFilter<File> filter) voidDirectoryScanner.setFilter(FileListFilter<File> filter) Sets a custom filter to be used by this scanner.voidFileReadingMessageSource.setFilter(FileListFilter<File> filter) Set aFileListFilter.final voidHeadDirectoryScanner.setFilter(FileListFilter<File> filter) -
Uses of FileListFilter in org.springframework.integration.file.config
Methods in org.springframework.integration.file.config that return FileListFilterMethods in org.springframework.integration.file.config that return types with arguments of type FileListFilterModifier and TypeMethodDescriptionprotected abstract Class<? extends FileListFilter<?>>AbstractRemoteFileInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected abstract Class<? extends FileListFilter<?>>AbstractRemoteFileStreamingInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected abstract Class<? extends FileListFilter<?>>AbstractRemoteFileInboundChannelAdapterParser.getSimplePatternFileListFilterClass()protected abstract Class<? extends FileListFilter<?>>AbstractRemoteFileStreamingInboundChannelAdapterParser.getSimplePatternFileListFilterClass()Methods in org.springframework.integration.file.config with parameters of type FileListFilterModifier and TypeMethodDescriptionvoidFileListFilterFactoryBean.setFilter(FileListFilter<File> filter) voidFileReadingMessageSourceFactoryBean.setFilter(FileListFilter<File> filter) -
Uses of FileListFilter in org.springframework.integration.file.dsl
Methods in org.springframework.integration.file.dsl with parameters of type FileListFilterModifier and TypeMethodDescriptionFileInboundChannelAdapterSpec.filter(FileListFilter<File> filter) Configure the filter.RemoteFileInboundChannelAdapterSpec.filter(FileListFilter<F> filter) Configure aFileListFilterto be applied to the remote files before copying them.RemoteFileOutboundGatewaySpec.filter(FileListFilter<F> filter) Set aFileListFilterto filter remote files.RemoteFileStreamingInboundChannelAdapterSpec.filter(FileListFilter<F> filter) Configure aFileListFilterto be applied to the remote files before copying them.RemoteFileInboundChannelAdapterSpec.localFilter(FileListFilter<File> localFileListFilter) AFileListFilterused to determine which files will generate messages after they have been synchronized.RemoteFileOutboundGatewaySpec.mputFilter(FileListFilter<File> filter) AFileListFilterthat runs against the local file system view when usingMPUTcommand. -
Uses of FileListFilter in org.springframework.integration.file.filters
Subinterfaces of FileListFilter in org.springframework.integration.file.filtersModifier and TypeInterfaceDescriptioninterfaceTheFileListFiltermodification which can accept aConsumerwhich can be called when the filter discards the file.interfaceAFileListFilterthat can be reset by removing a specific file from its state.interfaceAFileListFilterthat allows the caller to reverse (roll back) state changes.Classes in org.springframework.integration.file.filters that implement FileListFilterModifier and TypeClassDescriptionclassA file list filter that can be configured to always accept (pass) directories.classA convenience base class for anyFileListFilterwhose criteria can be evaluated against each File in isolation.classA FileListFilter that only passes files matched by one or moreFileListFilterif a corresponding marker file is also present to indicate a file transfer is complete.classStores "seen" files in a MetadataStore to survive application restarts.classFilters a listing of files by qualifying their 'name' against a regular expression (an instance ofPattern).classBase class for filters that support ant style path expressions, which are less powerful but more readable than regular expressions.classSimple implementation ofFileListFilterthat always returns true.classFileListFilterthat passes files only one time.classTheCompositeFileListFilterextension which chains the result of the previous filter to the next one.classSimpleFileListFilterthat predicates its matches against all of the configuredFileListFilter.classA SpEL expression basedAbstractFileListFilterimplementation.classFile system implementation ofAbstractMarkerFilePresentFileListFilter.classclassFileListFilterimplementation that ignores any hidden files.classTheFileListFilterimplementation to filter those files whichFile.lastModified()is less than theLastModifiedFileListFilter.agein comparison with the current time.classImplementation of AbstractRegexPatternMatchingFileListFilter for java.io.File instances.classFilter that supports ant style path expressions, which are less powerful but more readable than regular expressions.Fields in org.springframework.integration.file.filters with type parameters of type FileListFilterModifier and TypeFieldDescriptionprotected final Set<FileListFilter<F>>CompositeFileListFilter.fileFiltersMethods in org.springframework.integration.file.filters with parameters of type FileListFilterModifier and TypeMethodDescriptionCompositeFileListFilter.addFilter(FileListFilter<F> filter) final CompositeFileListFilter<F>CompositeFileListFilter.addFilters(FileListFilter<F>... filters) Method parameters in org.springframework.integration.file.filters with type arguments of type FileListFilterModifier and TypeMethodDescriptionCompositeFileListFilter.addFilters(Collection<? extends FileListFilter<F>> filtersToAdd) Add the new filters to this CompositeFileListFilter while maintaining the existing filters.Constructors in org.springframework.integration.file.filters with parameters of type FileListFilterModifierConstructorDescriptionConstruct an instance with a singleFileListFilterand ".complete" will be appended to the name of a matched file when looking for the marker file.AbstractMarkerFilePresentFileListFilter(FileListFilter<F> filter, String suffix) Construct an instance with a singleFileListFilterand a suffix that will will be appended to the name of a matched file when looking for the marker file.AbstractMarkerFilePresentFileListFilter(FileListFilter<F> filter, Function<String, String> function) Construct an instance with a singleFileListFilterand a function that will be applied to the name of a matched file when looking for the marker file.FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter, String suffix) FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter, Function<String, String> function) Constructor parameters in org.springframework.integration.file.filters with type arguments of type FileListFilterModifierConstructorDescriptionAbstractMarkerFilePresentFileListFilter(Map<FileListFilter<F>, Function<String, String>> filtersAndFunctions) Construct an instance with a map ofFileListFilterand functions be applied to the name of a matched file when looking for the marker file.ChainFileListFilter(Collection<? extends FileListFilter<F>> fileFilters) CompositeFileListFilter(Collection<? extends FileListFilter<F>> fileFilters) FileSystemMarkerFilePresentFileListFilter(Map<FileListFilter<File>, Function<String, String>> filtersAndFunctions) -
Uses of FileListFilter in org.springframework.integration.file.locking
Classes in org.springframework.integration.file.locking that implement FileListFilterModifier and TypeClassDescriptionclassConvenience base class for implementing FileLockers that check a lock before accepting a file.classFile locking strategy that uses java.nio. -
Uses of FileListFilter in org.springframework.integration.file.remote
Methods in org.springframework.integration.file.remote with parameters of type FileListFilterModifier and TypeMethodDescriptionprotected final voidAbstractRemoteFileStreamingMessageSource.doSetFilter(FileListFilter<F> filterToSet) voidAbstractRemoteFileStreamingMessageSource.setFilter(FileListFilter<F> filter) Set the filter to be applied to the remote files before transferring. -
Uses of FileListFilter in org.springframework.integration.file.remote.gateway
Methods in org.springframework.integration.file.remote.gateway with parameters of type FileListFilterModifier and TypeMethodDescriptionvoidAbstractRemoteFileOutboundGateway.setFilter(FileListFilter<F> filter) Set aFileListFilterto filter remote files.voidAbstractRemoteFileOutboundGateway.setMputFilter(FileListFilter<File> filter) AFileListFilterthat runs against the local file system view when usingMPUTcommand. -
Uses of FileListFilter in org.springframework.integration.file.remote.synchronizer
Methods in org.springframework.integration.file.remote.synchronizer with parameters of type FileListFilterModifier and TypeMethodDescriptionprotected final voidAbstractInboundFileSynchronizer.doSetFilter(FileListFilter<F> filterToSet) voidAbstractInboundFileSynchronizer.setFilter(FileListFilter<F> filter) Set the filter to be applied to the remote files before transferring.voidAbstractInboundFileSynchronizingMessageSource.setLocalFilter(FileListFilter<File> localFileListFilter) AFileListFilterused to determine which files will generate messages after they have been synchronized. -
Uses of FileListFilter in org.springframework.integration.ftp.config
Methods in org.springframework.integration.ftp.config that return types with arguments of type FileListFilterModifier and TypeMethodDescriptionprotected Class<? extends FileListFilter<?>>FtpInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected Class<? extends FileListFilter<?>>FtpStreamingInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected Class<? extends FileListFilter<?>>FtpInboundChannelAdapterParser.getSimplePatternFileListFilterClass()protected Class<? extends FileListFilter<?>>FtpStreamingInboundChannelAdapterParser.getSimplePatternFileListFilterClass() -
Uses of FileListFilter in org.springframework.integration.ftp.filters
Classes in org.springframework.integration.ftp.filters that implement FileListFilterModifier and TypeClassDescriptionclassPersistent file list filter using the server's file timestamp to detect if we've already 'seen' this file.classImplementation ofAbstractRegexPatternFileListFilterfor FTP.classImplementation ofAbstractSimplePatternFileListFilterfor FTP.classFTP implementation ofAbstractMarkerFilePresentFileListFilter.Constructors in org.springframework.integration.ftp.filters with parameters of type FileListFilterModifierConstructorDescriptionFtpSystemMarkerFilePresentFileListFilter(FileListFilter<org.apache.commons.net.ftp.FTPFile> filter) FtpSystemMarkerFilePresentFileListFilter(FileListFilter<org.apache.commons.net.ftp.FTPFile> filter, String suffix) FtpSystemMarkerFilePresentFileListFilter(FileListFilter<org.apache.commons.net.ftp.FTPFile> filter, Function<String, String> function) Constructor parameters in org.springframework.integration.ftp.filters with type arguments of type FileListFilterModifierConstructorDescriptionFtpSystemMarkerFilePresentFileListFilter(Map<FileListFilter<org.apache.commons.net.ftp.FTPFile>, Function<String, String>> filtersAndFunctions) -
Uses of FileListFilter in org.springframework.integration.sftp.config
Methods in org.springframework.integration.sftp.config that return types with arguments of type FileListFilterModifier and TypeMethodDescriptionprotected Class<? extends FileListFilter<?>>SftpInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected Class<? extends FileListFilter<?>>SftpStreamingInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected Class<? extends FileListFilter<?>>SftpInboundChannelAdapterParser.getSimplePatternFileListFilterClass()protected Class<? extends FileListFilter<?>>SftpStreamingInboundChannelAdapterParser.getSimplePatternFileListFilterClass() -
Uses of FileListFilter in org.springframework.integration.sftp.filters
Classes in org.springframework.integration.sftp.filters that implement FileListFilterModifier and TypeClassDescriptionclassPersistent file list filter using the server's file timestamp to detect if we've already 'seen' this file.classImplementation ofAbstractRegexPatternFileListFilterfor SFTP.classImplementation ofAbstractSimplePatternFileListFilterfor SFTP.classSFTP implementation ofAbstractMarkerFilePresentFileListFilter.Constructors in org.springframework.integration.sftp.filters with parameters of type FileListFilterModifierConstructorDescriptionSftpSystemMarkerFilePresentFileListFilter(FileListFilter<org.apache.sshd.sftp.client.SftpClient.DirEntry> filter) SftpSystemMarkerFilePresentFileListFilter(FileListFilter<org.apache.sshd.sftp.client.SftpClient.DirEntry> filter, String suffix) SftpSystemMarkerFilePresentFileListFilter(FileListFilter<org.apache.sshd.sftp.client.SftpClient.DirEntry> filter, Function<String, String> function) Constructor parameters in org.springframework.integration.sftp.filters with type arguments of type FileListFilterModifierConstructorDescriptionSftpSystemMarkerFilePresentFileListFilter(Map<FileListFilter<org.apache.sshd.sftp.client.SftpClient.DirEntry>, Function<String, String>> filtersAndFunctions) -
Uses of FileListFilter in org.springframework.integration.smb.config
Methods in org.springframework.integration.smb.config that return types with arguments of type FileListFilterModifier and TypeMethodDescriptionprotected Class<? extends FileListFilter<?>>SmbInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected Class<? extends FileListFilter<?>>SmbStreamingInboundChannelAdapterParser.getRegexPatternFileListFilterClass()protected Class<? extends FileListFilter<?>>SmbInboundChannelAdapterParser.getSimplePatternFileListFilterClass()protected Class<? extends FileListFilter<?>>SmbStreamingInboundChannelAdapterParser.getSimplePatternFileListFilterClass() -
Uses of FileListFilter in org.springframework.integration.smb.filters
Classes in org.springframework.integration.smb.filters that implement FileListFilterModifier and TypeClassDescriptionclassImplementation ofAbstractPersistentAcceptOnceFileListFilterfor SMB.classImplementation ofAbstractRegexPatternFileListFilterfor SMB.classImplementation ofAbstractSimplePatternFileListFilterfor SMB.classImplementation ofAbstractMarkerFilePresentFileListFilterfor SMB.Constructors in org.springframework.integration.smb.filters with parameters of type FileListFilterModifierConstructorDescriptionSmbSystemMarkerFilePresentFileListFilter(FileListFilter<jcifs.smb.SmbFile> filter) SmbSystemMarkerFilePresentFileListFilter(FileListFilter<jcifs.smb.SmbFile> filter, String suffix) SmbSystemMarkerFilePresentFileListFilter(FileListFilter<jcifs.smb.SmbFile> filter, Function<String, String> function) Constructor parameters in org.springframework.integration.smb.filters with type arguments of type FileListFilterModifierConstructorDescriptionSmbSystemMarkerFilePresentFileListFilter(Map<FileListFilter<jcifs.smb.SmbFile>, Function<String, String>> filtersAndFunctions)