Spring Integration

org.springframework.integration.file.filters
Class SimplePatternFileListFilter

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

public class SimplePatternFileListFilter
extends AbstractSimplePatternFileListFilter<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
Author:
Mark Fisher

Constructor Summary
SimplePatternFileListFilter(java.lang.String path)
           
 
Method Summary
protected  java.lang.String getFilename(java.io.File file)
          Subclasses must implement this method to extract the file's name.
 
Methods inherited from class org.springframework.integration.file.filters.AbstractSimplePatternFileListFilter
accept
 
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

getFilename

protected java.lang.String getFilename(java.io.File file)
Description copied from class: AbstractSimplePatternFileListFilter
Subclasses must implement this method to extract the file's name.

Specified by:
getFilename in class AbstractSimplePatternFileListFilter<java.io.File>

Spring Integration