Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/State.java @ 376:d8f3ef441bf2
merged gnv-artifacts/0.3
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:47 +0200 |
parents | a887074460b6 |
children | b7bb66440cc8 |
comparison
equal
deleted
inserted
replaced
293:6b0ef2324d02 | 376:d8f3ef441bf2 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.state; | |
5 | |
6 import java.io.Serializable; | |
7 import java.util.Collection; | |
8 | |
9 import org.w3c.dom.Document; | |
10 import org.w3c.dom.Node; | |
11 | |
12 import de.intevation.artifacts.CallMeta; | |
13 import de.intevation.gnv.state.exception.StateException; | |
14 | |
15 /** | |
16 * @author Tim Englich <tim.englich@intevation.de> | |
17 * | |
18 */ | |
19 public interface State extends Serializable { | |
20 | |
21 public void setup(Node configuration); | |
22 | |
23 public String getID(); | |
24 | |
25 public String getDescription(); | |
26 | |
27 public void describe(Document document, Node rootNode, | |
28 CallMeta callMeta, String uuid); | |
29 | |
30 public void setParent(State state); | |
31 | |
32 public State getParent(); | |
33 | |
34 public Collection<InputValue> getRequiredInputValues(); | |
35 | |
36 public void putInputData(Collection<InputData> inputData, | |
37 String uuid)throws StateException; | |
38 | |
39 public Collection<InputData> getInputData() throws StateException; | |
40 | |
41 public void advance(String uuid, CallMeta callMeta) | |
42 throws StateException; | |
43 public void initialize(String uuid, CallMeta callMeta) | |
44 throws StateException; | |
45 | |
46 | |
47 } |