01: /*
02: * Created on 11-Jan-2006
03: */
04: package uk.org.ponder.rsf.viewstate;
05:
06: import java.util.HashMap;
07: import java.util.Map;
08:
09: /** A root placeholder class to aid deserialization of the sitemap, into
10: * its ultimate home in a BasicViewParametersParser. This will be a map of
11: * String viewIDs into ViewParameters exemplars.
12: * @author Antranig Basman (amb26@ponder.org.uk)
13: *
14: */
15:
16: public class SiteMap {
17: public Map view = new HashMap();
18: }
|