1 2 package hero.util.values; 3 4 import java.io.Serializable ; 5 import java.util.Collection ; 6 import java.util.ArrayList ; 7 8 public final class BonitaEdgeValue implements Serializable { 9 10 12 private String name = null; 13 14 private int state; 15 16 private String condition = null; 17 18 private String inNode = null; 19 20 private String outNode = null; 21 22 24 public String getName() { 25 return (name); 26 } 27 28 public void setName(String name) { 29 this.name = name; 30 } 31 32 public int getState() { 33 return (state); 34 } 35 36 public void setState(int state) { 37 this.state = state; 38 } 39 40 public String getCondition() { 41 return (condition); 42 } 43 44 public void setCondition(String condition) { 45 this.condition = condition; 46 } 47 48 public String getInNode() { 49 return (inNode); 50 } 51 52 public void setInNode(String inNode) { 53 this.inNode = inNode; 54 } 55 56 public String getOutNode() { 57 return (outNode); 58 } 59 60 public void setOutNode(String outNode) { 61 this.outNode = outNode; 62 } 63 64 public BonitaEdgeValue(){} 65 66 } 67 | Popular Tags |