01: package hero.util.values;
02:
03: import java.io.Serializable;
04:
05: public final class BonitaIterationValue implements Serializable {
06:
07: // --------------------------------------------------- Instance Variables
08:
09: private String fromNode = null;
10:
11: private String toNode = null;
12:
13: private String condition = null;
14:
15: // ----------------------------------------------------------- Properties
16:
17: public String getFromNode() {
18: return (fromNode);
19: }
20:
21: public void setFromNode(String fromNode) {
22: this .fromNode = fromNode;
23: }
24:
25: public String getToNode() {
26: return (toNode);
27: }
28:
29: public void setToNode(String toNode) {
30: this .toNode = toNode;
31: }
32:
33: public String getCondition() {
34: return (condition);
35: }
36:
37: public void setCondition(String condition) {
38: this .condition = condition;
39: }
40:
41: public BonitaIterationValue() {
42: }
43:
44: }
|