1 /*
2 * WebFlow Navigation Manager: webflow definiton, server side navigation history and automatic session cleaning.
3 * Distributed under LGPL license at web site http://wfnm.sourceforge.net .
4 */
5 package net.sf.wfnm.web;
6
7 /***
8 * Define a URL rewriter.
9 *
10 * @author <a href="mailto:malbari@users.sourceforge.net">Maurizio Albari</a>
11 * @version 1.0.6
12 */
13 public interface UrlRewriter {
14 /***
15 * Rewrite the URL.
16 *
17 * @param url the URL to rewrite
18 *
19 * @return the rewrited URL
20 */
21 String rewriteUrl(String url);
22 }