1 29 package hero.util.values; 30 import java.util.ArrayList ; 31 import java.util.Collection ; 32 33 public class BonitaProjectValue implements java.io.Serializable { 34 35 private String name = null; 36 37 private String type = null; 38 39 private String status = null; 40 41 private BonitaConfigValue projectConfig = null; 42 43 private Collection hooks = new ArrayList (); 44 45 private Collection interHooks = new ArrayList (); 46 47 private Collection nodes = new ArrayList (); 48 49 private Collection properties = new ArrayList (); 50 51 private Collection roles = new ArrayList (); 52 53 private Collection users = new ArrayList (); 54 55 private Collection iterations = new ArrayList (); 56 57 59 public String getName() { 60 return (name); 61 } 62 63 public void setName(String name) { 64 this.name = name; 65 } 66 67 public String getType() { 68 return (type); 69 } 70 71 public void setType(String type) { 72 this.type = type; 73 } 74 75 public String getStatus() { 76 return (status); 77 } 78 79 public void setStatus(String status) { 80 this.status = status; 81 } 82 83 public Collection getNodes() { 84 return (this.nodes); 85 } 86 87 public void setNodes(Collection nodes) { 88 this.nodes = nodes; 89 } 90 91 public Collection getProperties() { 92 return (this.properties); 93 } 94 95 public void setProperties(Collection properties) { 96 this.properties = properties; 97 } 98 99 public Collection getRoles() { 100 return (this.roles); 101 } 102 103 public void setRoles(Collection roles) { 104 this.roles = roles; 105 } 106 107 public Collection getUsers() { 108 return (this.users); 109 } 110 111 public void setUsers(Collection users) { 112 this.users = users; 113 } 114 115 public Collection getHooks() { 116 return (this.hooks); 117 } 118 119 public void setHooks(Collection hooks) { 120 this.hooks = hooks; 121 } 122 123 public Collection getInterHooks() { 124 return (this.interHooks); 125 } 126 127 public void setInterHooks(Collection interHooks) { 128 this.interHooks = interHooks; 129 } 130 131 public Collection getIterations() { 132 return (this.iterations); 133 } 134 135 public void setIterations(Collection iterations) { 136 this.iterations = iterations; 137 } 138 139 public BonitaConfigValue getProjectConfig() { 140 return (this.projectConfig); 141 } 142 143 public void setProjectConfig(BonitaConfigValue projectConfig) { 144 this.projectConfig = projectConfig; 145 } 146 147 public BonitaProjectValue(){} 148 } 149 | Popular Tags |