01: /*
02: * Created on 14 Aug 2006
03: */
04: package uk.org.ponder.rsf.viewstate;
05:
06: /** Returns the external URL corresponding to the context resource base for
07: * this application.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface ContextURLProvider {
12: public String getContextBaseURL();
13: }
|