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

Last change on this file since 858 was 858, checked in by tobias, on Apr 9, 2010 at 10:56:07 AM

visual design slightly modified. tree functions extended

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