Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
langxml
titleServiceMix 3.2 Filter example
	<property name="filter">
	  <bean class="org.apache.commons.io.filefilter.WildcardFilter">
	    <constructor-arg value="*.csv" />
	  </bean>
	</property>

In the example above it uses Apache Commons IO WildcardFilter as it implements FileFilter. The Apache Commons IO jar file must be in the classpath. See: http://commons.apache.org/io/

...