01: /*
02: * Created on 12 Jul 2007
03: */
04: package uk.org.ponder.rsf.swf.viewparams;
05:
06: import java.util.Map;
07:
08: import uk.org.ponder.rsf.viewstate.ViewParameters;
09:
10: /** View parameters suitable for a link or form which causes the launch of
11: * a new flow.
12: * @author Antranig Basman (antranig@caret.cam.ac.uk)
13: */
14:
15: public class SWFLaunchViewParams extends SWFViewParams {
16:
17: public SWFLaunchViewParams() {
18: }
19:
20: public SWFLaunchViewParams(String flowId, ViewParameters target) {
21: super (target);
22: this .flowId = flowId;
23: }
24:
25: public SWFLaunchViewParams(String flowId, Map params) {
26: super (params);
27: this .flowId = flowId;
28: }
29:
30: public SWFLaunchViewParams(String flowId) {
31: this (flowId, (Map) null);
32: }
33:
34: }
|