01: /**
02: *
03: */package nl.hippo.cms.wizard;
04:
05: import nl.hippo.cms.wizard.components.ComponentContainer;
06:
07: /**
08: * Describes the root Component in the wizard model. It holds an OrderedMap of Configurations.
09: * It stores a key that represents the state of the last form post, which is used by the cforms-template
10: * to present the user usefull information about the action.
11: *
12: * @author a.bogaart@hippo.nl
13: *
14: */
15: public interface Wizard extends ComponentContainer {
16:
17: void setResultAction(String result);
18:
19: String getResultAction();
20:
21: }
|