01: /*
02: * Created on 21 Nov 2006
03: */
04: package uk.org.ponder.rsf.viewstate;
05:
06: /** A special class of ViewParameters accepted as a redirect specification
07: * which performs no redirect. That is, a NavigationCase may report
08: * a <code>resultingView</code> as NoViewParameters indicating that the
09: * handler has somehow succeeded in processing the action request by itself.
10: * @author Antranig Basman (antranig@caret.cam.ac.uk)
11: *
12: */
13:
14: public class NoViewParameters extends SimpleViewParameters {
15: }
|