01: /*
02: * Created on 10 Sep 2007
03: */
04: package uk.org.ponder.rsf.viewstate;
05:
06: /**
07: * Mapping information describing the mapping from URL attributes onto bean
08: * paths for ViewParameters objects.
09: *
10: * @author Antranig Basman (amb26@ponder.org.uk)
11: */
12:
13: public interface ViewParamsMapInfo {
14:
15: public String pathToAttribute(String path);
16:
17: public String attributeToPath(String attribute);
18:
19: }
|