01: /*
02: * Created on 10 Aug 2006
03: */
04: package uk.org.ponder.rsf.viewstate;
05:
06: /** Supplies URL rewriting services for "internal" URLs (i.e. directed
07: * at application views) but which are not participating in the
08: * ViewParameters system. For example UIInternalLink components which have
09: * specified a raw link, or UIForms. In "normal" servlet environments, these
10: * will be no-op operations.
11: * @author Antranig Basman (antranig@caret.cam.ac.uk)
12: *
13: */
14: public interface InternalURLRewriter {
15: public String rewriteRenderURL(String original);
16:
17: public String rewriteActionURL(String original);
18: }
|