1 package hero.util.values; 2 3 31 32 33 import java.io.Serializable ; 34 import java.util.Vector ; 35 36 public final class BonitaPerformerValue implements Serializable { 37 38 40 private String nodeName=""; 41 private String name=""; 42 private int type; 43 private String propertyName=""; 44 45 47 public String getNodeName() { 48 return (nodeName); 49 } 50 51 public void setNodeName(String nodeName) { 52 this.nodeName = nodeName; 53 } 54 55 public String getName() { 56 return (name); 57 } 58 59 public void setName(String name) { 60 this.name = name; 61 } 62 63 public int getType() { 64 return (type); 65 } 66 67 public void setType(int type) { 68 this.type = type; 69 } 70 public String getPropertyName() { 71 return (propertyName); 72 } 73 74 public void setPropertyName(String propertyName) { 75 this.propertyName = propertyName; 76 } 77 78 public BonitaPerformerValue(){} 79 80 } 81 | Popular Tags |