Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/Transition.java @ 207:d87347142702
Store the Results of an Artifact not in the Artifact but in an ehcache instance. issue3
gnv-artifacts/trunk@263 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Fri, 23 Oct 2009 08:50:50 +0000 |
parents | 7fb9441dd8af |
children | ee2d4134d0b3 |
comparison
equal
deleted
inserted
replaced
206:01ac348ac4a4 | 207:d87347142702 |
---|---|
28 | 28 |
29 public String getDescription(); | 29 public String getDescription(); |
30 | 30 |
31 public boolean validate(); | 31 public boolean validate(); |
32 | 32 |
33 public void describe(Document document, Node rootNode, CallMeta callMeta); | 33 public void describe(Document document, Node rootNode, CallMeta callMeta, String uuid); |
34 | 34 |
35 public void setParent(Transition transition); | 35 public void setParent(Transition transition); |
36 | 36 |
37 public Transition getParent(); | 37 public Transition getParent(); |
38 | 38 |
39 public Collection<InputValue> getRequiredInputValues(); | 39 public Collection<InputValue> getRequiredInputValues(); |
40 | 40 |
41 public void putInputData(Collection<InputData> inputData, String uuid) | 41 public void putInputData(Collection<InputData> inputData, |
42 throws TransitionException; | 42 String uuid) |
43 throws TransitionException; | |
43 | 44 |
44 public Collection<InputData> getInputData() throws TransitionException; | 45 public Collection<InputData> getInputData() throws TransitionException; |
45 | 46 |
46 public void advance(String uuid, CallMeta callMeta) | 47 public void advance(String uuid, CallMeta callMeta) |
47 throws TransitionException; | 48 throws TransitionException; |
48 | 49 |
49 public Collection<Object> getDescibeData(); | |
50 | |
51 public void setDescibeData(Collection<Object> descibeData); | |
52 | |
53 } | 50 } |