1 2 package hero.util.values; 3 4 5 import java.io.Serializable ; 6 import java.util.Collection ; 7 import java.util.ArrayList ; 8 9 public final class BonitaNodeValue implements Serializable { 10 11 13 private String projectName = null; 14 15 private String projectParent = null; 16 17 private String name = null; 18 19 private String creator = null; 20 21 private String state = null; 22 23 private String role = null; 24 25 private int type; 26 27 private boolean anticipable = false ; 28 29 private Collection deadlines = new ArrayList (); 30 31 private Collection relativeDeadlines= new ArrayList (); 32 33 private Collection properties= new ArrayList (); 34 35 private Collection hooks = new ArrayList (); 36 37 private Collection interHooks = new ArrayList (); 38 39 private Collection inEdges = new ArrayList (); 40 41 private Collection outEdges = new ArrayList (); 42 43 private String description = "Not description yet"; 44 45 private String executor = "This activity is not executing"; 46 47 private BonitaPerformerValue performer = null; 48 49 50 52 public String getProjectName() { 53 return (projectName); 54 } 55 56 public void setProjectName(String projectName) { 57 this.projectName = projectName; 58 } 59 60 public String getProjectParent() { 61 return (projectParent); 62 } 63 64 public void setProjectParent(String projectParent) { 65 this.projectParent = projectParent; 66 } 67 68 public Collection getInEdges() { 69 return (inEdges); 70 } 71 72 public void setInEdges(Collection inEdges) { 73 this.inEdges = inEdges; 74 } 75 76 public Collection getOutEdges() { 77 return (outEdges); 78 } 79 80 public void setOutEdges(Collection outEdges) { 81 this.outEdges = outEdges; 82 } 83 84 public String getName() { 85 return (name); 86 } 87 88 public void setName(String name) { 89 this.name = name; 90 } 91 92 public String getCreator() { 93 return (creator); 94 } 95 96 public void setCreator(String creator) { 97 this.creator = creator; 98 } 99 100 public String getState() { 101 return (state); 102 } 103 104 public void setState(String state) { 105 this.state = state; 106 } 107 108 public int getType() { 109 return (type); 110 } 111 112 public void setType(int type) { 113 this.type = type; 114 } 115 116 public String getRole() { 117 return (role); 118 } 119 120 public void setRole(String role) { 121 this.role = role; 122 } 123 124 public boolean getAnticipable() { 125 return (anticipable); 126 } 127 128 public void setAnticipable(boolean anticipable) { 129 this.anticipable = anticipable; 130 } 131 132 public Collection getDeadlines() { 133 return (deadlines); 134 } 135 136 public void setDeadlines(Collection deadlines) { 137 this.deadlines = deadlines; 138 } 139 140 public Collection getRelativeDeadlines() { 141 return (relativeDeadlines); 142 } 143 144 public void setRelativeDeadlines(Collection relativeDeadlines) { 145 this.relativeDeadlines = relativeDeadlines; 146 } 147 148 public Collection getProperties() { 149 return (properties); 150 } 151 152 public void setProperties(Collection properties) { 153 this.properties = properties; 154 } 155 156 public Collection getHooks() { 157 return (this.hooks); 158 } 159 160 public void setHooks(Collection hooks) { 161 this.hooks = hooks; 162 } 163 164 public Collection getInterHooks() { 165 return (this.interHooks); 166 } 167 168 public void setInterHooks(Collection interHooks) { 169 this.interHooks = interHooks; 170 } 171 172 173 public String getDescription() { 174 return (description); 175 } 176 177 public void setDescription(String description) { 178 this.description = description; 179 } 180 181 public String getExecutor() { 182 return (executor); 183 } 184 185 public void setExecutor(String executor) { 186 this.executor = executor; 187 } 188 189 public BonitaPerformerValue getPerformer() { 190 return (performer); 191 } 192 193 public void setPerformer(BonitaPerformerValue performer) { 194 this.performer = performer; 195 } 196 197 198 public BonitaNodeValue(){} 199 200 } 201 | Popular Tags |