source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/DirectorItem.java@ 859

Last change on this file since 859 was 859, checked in by tobias, on Apr 9, 2010 at 6:02:36 PM

messages resource validation added

File size: 6.3 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2
3public class DirectorItem extends ItemType implements UserObjectItem{
4 private String name;
5 private String description;
6 private String password;
7 private String messages;
8 private String workingdirectory;
9 private String piddirectory;
10 private String scriptsdirectory;
11 private String queryfile;
12 private String heartbeatinterval;
13 private String maximumconcurrentjobs;
14 private String fdconnecttimeout;
15 private String sdconnecttimeout;
16 private String diraddresses;
17 private String dirport;
18 private String diraddress;
19 private String dirsourceaddress;
20 private String statisticsretention;
21 private String verid;
22 private String maxconsoleconnections;
23
24 public DirectorItem(){}
25
26 public DirectorItem(String name, String password, String messages, String workingdirectory,
27 String piddrectory, String queryfile){
28
29 }
30
31 /**
32 * @return
33 * @uml.property name="name"
34 */
35 public String getName() {
36 return name;
37 }
38
39 /**
40 * @param name
41 * @uml.property name="name"
42 */
43 public void setName(String name) {
44 this.name = name;
45 }
46
47 /**
48 * @return
49 * @uml.property name="description"
50 */
51 public String getDescription() {
52 return description;
53 }
54
55 /**
56 * @param description
57 * @uml.property name="description"
58 */
59 public void setDescription(String description) {
60 this.description = description;
61 }
62
63 /**
64 * @return
65 * @uml.property name="password"
66 */
67 public String getPassword() {
68 return password;
69 }
70
71 /**
72 * @param password
73 * @uml.property name="password"
74 */
75 public void setPassword(String password) {
76 this.password = password;
77 }
78
79 /**
80 * @return
81 * @uml.property name="messages"
82 */
83 public String getMessages() {
84 return messages;
85 }
86
87 /**
88 * @param messages
89 * @uml.property name="messages"
90 */
91 public void setMessages(String messages) {
92 this.messages = messages;
93 }
94
95 /**
96 * @return
97 * @uml.property name="workingdirectory"
98 */
99 public String getWorkingdirectory() {
100 return workingdirectory;
101 }
102
103 /**
104 * @param workingdirectory
105 * @uml.property name="workingdirectory"
106 */
107 public void setWorkingdirectory(String workingdirectory) {
108 this.workingdirectory = workingdirectory;
109 }
110
111 /**
112 * @return
113 * @uml.property name="piddirectory"
114 */
115 public String getPiddirectory() {
116 return piddirectory;
117 }
118
119 /**
120 * @param piddirectory
121 * @uml.property name="piddirectory"
122 */
123 public void setPiddirectory(String piddirectory) {
124 this.piddirectory = piddirectory;
125 }
126
127 /**
128 * @return
129 * @uml.property name="scriptsdirectory"
130 */
131 public String getScriptsdirectory() {
132 return scriptsdirectory;
133 }
134
135 /**
136 * @param scriptsdirectory
137 * @uml.property name="scriptsdirectory"
138 */
139 public void setScriptsdirectory(String scriptsdirectory) {
140 this.scriptsdirectory = scriptsdirectory;
141 }
142
143 /**
144 * @return
145 * @uml.property name="queryfile"
146 */
147 public String getQueryfile() {
148 return queryfile;
149 }
150
151 /**
152 * @param queryfile
153 * @uml.property name="queryfile"
154 */
155 public void setQueryfile(String queryfile) {
156 this.queryfile = queryfile;
157 }
158
159 /**
160 * @return
161 * @uml.property name="heartbeatinterval"
162 */
163 public String getHeartbeatinterval() {
164 return heartbeatinterval;
165 }
166
167 /**
168 * @param heartbeatinterval
169 * @uml.property name="heartbeatinterval"
170 */
171 public void setHeartbeatinterval(String heartbeatinterval) {
172 this.heartbeatinterval = heartbeatinterval;
173 }
174
175 /**
176 * @return
177 * @uml.property name="maximumconcurrentjobs"
178 */
179 public String getMaximumconcurrentjobs() {
180 return maximumconcurrentjobs;
181 }
182
183 /**
184 * @param maximumconcurrentjobs
185 * @uml.property name="maximumconcurrentjobs"
186 */
187 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
188 this.maximumconcurrentjobs = maximumconcurrentjobs;
189 }
190
191 /**
192 * @return
193 * @uml.property name="fdconnecttimeout"
194 */
195 public String getFdconnecttimeout() {
196 return fdconnecttimeout;
197 }
198
199 /**
200 * @param fdconnecttimeout
201 * @uml.property name="fdconnecttimeout"
202 */
203 public void setFdconnecttimeout(String fdconnecttimeout) {
204 this.fdconnecttimeout = fdconnecttimeout;
205 }
206
207 /**
208 * @return
209 * @uml.property name="sdconnecttimeout"
210 */
211 public String getSdconnecttimeout() {
212 return sdconnecttimeout;
213 }
214
215 /**
216 * @param sdconnecttimeout
217 * @uml.property name="sdconnecttimeout"
218 */
219 public void setSdconnecttimeout(String sdconnecttimeout) {
220 this.sdconnecttimeout = sdconnecttimeout;
221 }
222
223 /**
224 * @return
225 * @uml.property name="diraddresses"
226 */
227 public String getDiraddresses() {
228 return diraddresses;
229 }
230
231 /**
232 * @param diraddresses
233 * @uml.property name="diraddresses"
234 */
235 public void setDiraddresses(String diraddresses) {
236 this.diraddresses = diraddresses;
237 }
238
239 /**
240 * @return
241 * @uml.property name="dirport"
242 */
243 public String getDirport() {
244 return dirport;
245 }
246
247 /**
248 * @param dirport
249 * @uml.property name="dirport"
250 */
251 public void setDirport(String dirport) {
252 this.dirport = dirport;
253 }
254
255 /**
256 * @return
257 * @uml.property name="diraddress"
258 */
259 public String getDiraddress() {
260 return diraddress;
261 }
262
263 /**
264 * @param diraddress
265 * @uml.property name="diraddress"
266 */
267 public void setDiraddress(String diraddress) {
268 this.diraddress = diraddress;
269 }
270
271 /**
272 * @return
273 * @uml.property name="dirsourceaddress"
274 */
275 public String getDirsourceaddress() {
276 return dirsourceaddress;
277 }
278
279 /**
280 * @param dirsourceaddress
281 * @uml.property name="dirsourceaddress"
282 */
283 public void setDirsourceaddress(String dirsourceaddress) {
284 this.dirsourceaddress = dirsourceaddress;
285 }
286
287 /**
288 * @return
289 * @uml.property name="statisticsretention"
290 */
291 public String getStatisticsretention() {
292 return statisticsretention;
293 }
294
295 /**
296 * @param statisticsretention
297 * @uml.property name="statisticsretention"
298 */
299 public void setStatisticsretention(String statisticsretention) {
300 this.statisticsretention = statisticsretention;
301 }
302
303 /**
304 * @return
305 * @uml.property name="verid"
306 */
307 public String getVerid() {
308 return verid;
309 }
310
311 /**
312 * @param verid
313 * @uml.property name="verid"
314 */
315 public void setVerid(String verid) {
316 this.verid = verid;
317 }
318
319 /**
320 * @return
321 * @uml.property name="maxconsoleconnections"
322 */
323 public String getMaxconsoleconnections() {
324 return maxconsoleconnections;
325 }
326
327 /**
328 * @param maxconsoleconnections
329 * @uml.property name="maxconsoleconnections"
330 */
331 public void setMaxconsoleconnections(String maxconsoleconnections) {
332 this.maxconsoleconnections = maxconsoleconnections;
333 }
334
335
336
337
338}
Note: See TracBrowser for help on using the repository browser.