1 package org.jumpmind.symmetric.extract;
2
3 import org.jumpmind.symmetric.ext.IExtensionPoint;
4 import org.jumpmind.symmetric.model.Data;
5
6 public interface IExtractorFilter extends IExtensionPoint {
7
8 /***
9 * @return true if the row should be extracted
10 */
11 public boolean filterData(Data data, DataExtractorContext ctx);
12
13 }