View Javadoc

1   package com.atlassian.bonnie.search;
2   
3   import org.apache.lucene.document.Document;
4   
5   /**
6    * Represents an object that can do post-processing on a lucene {@link Document}. An example would be to add document
7    * and/or field level boosting.
8    */
9   public interface DocumentPostProcessor
10  {
11  	void process(Document document);
12  }
13