org.springframework.integration.file.filters
Class SimplePatternFileListFilter

java.lang.Object
  extended by org.springframework.integration.file.filters.AbstractFileListFilter<java.io.File>
      extended by org.springframework.integration.file.filters.SimplePatternFileListFilter
All Implemented Interfaces:
FileListFilter<java.io.File>

public class SimplePatternFileListFilter
extends AbstractFileListFilter<java.io.File>

Filter that supports ant style path expressions, which are less powerful but more readable than regular expressions. This filter only filters on the name of the file, the rest of the path is ignored.

Since:
2.0.0
See Also:
AntPathMatcher, AbstractPatternMatchingFileListFilter

Constructor Summary
SimplePatternFileListFilter(java.lang.String path)
           
 
Method Summary
 boolean accept(java.io.File file)
          Accept the given file its name matches the pattern,
 
Methods inherited from class org.springframework.integration.file.filters.AbstractFileListFilter
filterFiles
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SimplePatternFileListFilter

public SimplePatternFileListFilter(java.lang.String path)
Method Detail

accept

public boolean accept(java.io.File file)
Accept the given file its name matches the pattern,

Specified by:
accept in class AbstractFileListFilter<java.io.File>