KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > net > UrlNormalizer


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.net;
5
6 import java.net.MalformedURLException JavaDoc;
7
8 /** Interface used to convert URLs to normal form and optionally do regex substitutions */
9 public interface UrlNormalizer {
10   
11   /* Interface for URL normalization */
12   public String JavaDoc normalize(String JavaDoc urlString) throws MalformedURLException JavaDoc;
13
14 }
15
Popular Tags