01: /*
02: * Created on 18 May 2007
03: */
04: package uk.org.ponder.rsf.viewstate;
05:
06: /** An interception interface that allows implementors to adjust the
07: * state of the inferred ViewParameters before they are parsed into the
08: * request.
09: *
10: * @author Antranig Basman (antranig@caret.cam.ac.uk)
11: *
12: */
13:
14: public interface ViewParamsInterceptor {
15: public AnyViewParameters adjustViewParameters(
16: ViewParameters incoming);
17: }
|