1 2 3 4 package net.nutch.indexer; 5 6 import org.apache.lucene.document.Document; 7 import net.nutch.parse.Parse; 8 import net.nutch.fetcher.FetcherOutput; 9 10 14 public interface IndexingFilter { 15 16 final static String X_POINT_ID = IndexingFilter.class.getName(); 17 18 20 Document filter(Document doc, Parse parse, FetcherOutput fo) 21 throws IndexingException; 22 } 23 | Popular Tags |