1 /* Copyright (c) 2003 The Nutch Organization. All rights reserved. */ 2 /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */ 3 4 package org.creativecommons.nutch; 5 6 import net.nutch.searcher.RawFieldQueryFilter; 7 8 /** Handles "cc:" query clauses, causing them to search the "cc" field 9 * indexed by CCIndexingFilter. */ 10 public class CCQueryFilter extends RawFieldQueryFilter { 11 public CCQueryFilter() { 12 super(CCIndexingFilter.FIELD); 13 } 14 } 15