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 net.nutch.searcher.url; 5 6 import net.nutch.searcher.FieldQueryFilter; 7 8 /** Handles "url:" query clauses, causing them to search the field indexed by 9 * BasicIndexingFilter. */ 10 public class URLQueryFilter extends FieldQueryFilter { 11 public URLQueryFilter() { 12 super("url"); 13 } 14 } 15