source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/PoolItem.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: 8.7 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class PoolItem extends ItemType implements UserObjectItem{
3 /**
4 * @uml.property name="name"
5 */
6 private String name;
7 /**
8 * @uml.property name="maximumvolumes"
9 */
10 private String maximumvolumes;
11 /**
12 * @uml.property name="pooltype"
13 */
14 private String pooltype;
15 /**
16 * @uml.property name="storage"
17 */
18 private String storage;
19 /**
20 * @uml.property name="usevolumeonce"
21 */
22 private String usevolumeonce;
23 /**
24 * @uml.property name="maximumvolumejobs"
25 */
26 private String maximumvolumejobs;
27 /**
28 * @uml.property name="maximumvolumefiles"
29 */
30 private String maximumvolumefiles;
31 /**
32 * @uml.property name="maximumvolumebytes"
33 */
34 private String maximumvolumebytes;
35 /**
36 * @uml.property name="volumeuseduration"
37 */
38 private String volumeuseduration;
39 /**
40 * @uml.property name="catalogfiles"
41 */
42 private String catalogfiles;
43 /**
44 * @uml.property name="autoprune"
45 */
46 private String autoprune;
47 /**
48 * @uml.property name="volumeretention"
49 */
50 private String volumeretention;
51 /**
52 * @uml.property name="actiononpurge"
53 */
54 private String actiononpurge;
55 /**
56 * @uml.property name="scratchpool"
57 */
58 private String scratchpool;
59 /**
60 * @uml.property name="recyclepool"
61 */
62 private String recyclepool;
63 /**
64 * @uml.property name="recycle"
65 */
66 private String recycle;
67 /**
68 * @uml.property name="recycleoldestvolume"
69 */
70 private String recycleoldestvolume;
71 /**
72 * @uml.property name="recyclecurrentvolume"
73 */
74 private String recyclecurrentvolume;
75 /**
76 * @uml.property name="purgeoldestvolume"
77 */
78 private String purgeoldestvolume;
79 /**
80 * @uml.property name="fileretention"
81 */
82 private String fileretention;
83 /**
84 * @uml.property name="jobretention"
85 */
86 private String jobretention;
87 /**
88 * @uml.property name="cleaningprefix"
89 */
90 private String cleaningprefix;
91 /**
92 * @uml.property name="labelformat"
93 */
94 private String labelformat;
95
96 public PoolItem() {}
97
98 public PoolItem(String name, String pooltype){
99 setName(name);
100 setPooltype(pooltype);
101 }
102
103 /**
104 * @return
105 * @uml.property name="name"
106 */
107 public String getName() {
108 return name;
109 }
110
111 /**
112 * @param name
113 * @uml.property name="name"
114 */
115 public void setName(String name) {
116 this.name = name;
117 }
118
119 /**
120 * @return
121 * @uml.property name="maximumvolumes"
122 */
123 public String getMaximumvolumes() {
124 return maximumvolumes;
125 }
126
127 /**
128 * @param maximumvolumes
129 * @uml.property name="maximumvolumes"
130 */
131 public void setMaximumvolumes(String maximumvolumes) {
132 this.maximumvolumes = maximumvolumes;
133 }
134
135 /**
136 * @return
137 * @uml.property name="pooltype"
138 */
139 public String getPooltype() {
140 return pooltype;
141 }
142
143 /**
144 * @param pooltype
145 * @uml.property name="pooltype"
146 */
147 public void setPooltype(String pooltype) {
148 this.pooltype = pooltype;
149 }
150
151 /**
152 * @return
153 * @uml.property name="storage"
154 */
155 public String getStorage() {
156 return storage;
157 }
158
159 /**
160 * @param storage
161 * @uml.property name="storage"
162 */
163 public void setStorage(String storage) {
164 this.storage = storage;
165 }
166
167 /**
168 * @return
169 * @uml.property name="usevolumeonce"
170 */
171 public String getUsevolumeonce() {
172 return usevolumeonce;
173 }
174
175 /**
176 * @param usevolumeonce
177 * @uml.property name="usevolumeonce"
178 */
179 public void setUsevolumeonce(String usevolumeonce) {
180 this.usevolumeonce = usevolumeonce;
181 }
182
183 /**
184 * @return
185 * @uml.property name="maximumvolumejobs"
186 */
187 public String getMaximumvolumejobs() {
188 return maximumvolumejobs;
189 }
190
191 /**
192 * @param maximumvolumejobs
193 * @uml.property name="maximumvolumejobs"
194 */
195 public void setMaximumvolumejobs(String maximumvolumejobs) {
196 this.maximumvolumejobs = maximumvolumejobs;
197 }
198
199 /**
200 * @return
201 * @uml.property name="maximumvolumefiles"
202 */
203 public String getMaximumvolumefiles() {
204 return maximumvolumefiles;
205 }
206
207 /**
208 * @param maximumvolumefiles
209 * @uml.property name="maximumvolumefiles"
210 */
211 public void setMaximumvolumefiles(String maximumvolumefiles) {
212 this.maximumvolumefiles = maximumvolumefiles;
213 }
214
215 /**
216 * @return
217 * @uml.property name="maximumvolumebytes"
218 */
219 public String getMaximumvolumebytes() {
220 return maximumvolumebytes;
221 }
222
223 /**
224 * @param maximumvolumebytes
225 * @uml.property name="maximumvolumebytes"
226 */
227 public void setMaximumvolumebytes(String maximumvolumebytes) {
228 this.maximumvolumebytes = maximumvolumebytes;
229 }
230
231 /**
232 * @return
233 * @uml.property name="volumeuseduration"
234 */
235 public String getVolumeuseduration() {
236 return volumeuseduration;
237 }
238
239 /**
240 * @param volumeuseduration
241 * @uml.property name="volumeuseduration"
242 */
243 public void setVolumeuseduration(String volumeuseduration) {
244 this.volumeuseduration = volumeuseduration;
245 }
246
247 /**
248 * @return
249 * @uml.property name="catalogfiles"
250 */
251 public String getCatalogfiles() {
252 return catalogfiles;
253 }
254
255 /**
256 * @param catalogfiles
257 * @uml.property name="catalogfiles"
258 */
259 public void setCatalogfiles(String catalogfiles) {
260 this.catalogfiles = catalogfiles;
261 }
262
263 /**
264 * @return
265 * @uml.property name="autoprune"
266 */
267 public String getAutoprune() {
268 return autoprune;
269 }
270
271 /**
272 * @param autoprune
273 * @uml.property name="autoprune"
274 */
275 public void setAutoprune(String autoprune) {
276 this.autoprune = autoprune;
277 }
278
279 /**
280 * @return
281 * @uml.property name="volumeretention"
282 */
283 public String getVolumeretention() {
284 return volumeretention;
285 }
286
287 /**
288 * @param volumeretention
289 * @uml.property name="volumeretention"
290 */
291 public void setVolumeretention(String volumeretention) {
292 this.volumeretention = volumeretention;
293 }
294
295 /**
296 * @return
297 * @uml.property name="actiononpurge"
298 */
299 public String getActiononpurge() {
300 return actiononpurge;
301 }
302
303 /**
304 * @param actiononpurge
305 * @uml.property name="actiononpurge"
306 */
307 public void setActiononpurge(String actiononpurge) {
308 this.actiononpurge = actiononpurge;
309 }
310
311 /**
312 * @return
313 * @uml.property name="scratchpool"
314 */
315 public String getScratchpool() {
316 return scratchpool;
317 }
318
319 /**
320 * @param scratchpool
321 * @uml.property name="scratchpool"
322 */
323 public void setScratchpool(String scratchpool) {
324 this.scratchpool = scratchpool;
325 }
326
327 /**
328 * @return
329 * @uml.property name="recyclepool"
330 */
331 public String getRecyclepool() {
332 return recyclepool;
333 }
334
335 /**
336 * @param recyclepool
337 * @uml.property name="recyclepool"
338 */
339 public void setRecyclepool(String recyclepool) {
340 this.recyclepool = recyclepool;
341 }
342
343 /**
344 * @return
345 * @uml.property name="recycle"
346 */
347 public String getRecycle() {
348 return recycle;
349 }
350
351 /**
352 * @param recycle
353 * @uml.property name="recycle"
354 */
355 public void setRecycle(String recycle) {
356 this.recycle = recycle;
357 }
358
359 /**
360 * @return
361 * @uml.property name="recycleoldestvolume"
362 */
363 public String getRecycleoldestvolume() {
364 return recycleoldestvolume;
365 }
366
367 /**
368 * @param recycleoldestvolume
369 * @uml.property name="recycleoldestvolume"
370 */
371 public void setRecycleoldestvolume(String recycleoldestvolume) {
372 this.recycleoldestvolume = recycleoldestvolume;
373 }
374
375 /**
376 * @return
377 * @uml.property name="recyclecurrentvolume"
378 */
379 public String getRecyclecurrentvolume() {
380 return recyclecurrentvolume;
381 }
382
383 /**
384 * @param recyclecurrentvolume
385 * @uml.property name="recyclecurrentvolume"
386 */
387 public void setRecyclecurrentvolume(String recyclecurrentvolume) {
388 this.recyclecurrentvolume = recyclecurrentvolume;
389 }
390
391 /**
392 * @return
393 * @uml.property name="purgeoldestvolume"
394 */
395 public String getPurgeoldestvolume() {
396 return purgeoldestvolume;
397 }
398
399 /**
400 * @param purgeoldestvolume
401 * @uml.property name="purgeoldestvolume"
402 */
403 public void setPurgeoldestvolume(String purgeoldestvolume) {
404 this.purgeoldestvolume = purgeoldestvolume;
405 }
406
407 /**
408 * @return
409 * @uml.property name="fileretention"
410 */
411 public String getFileretention() {
412 return fileretention;
413 }
414
415 /**
416 * @param fileretention
417 * @uml.property name="fileretention"
418 */
419 public void setFileretention(String fileretention) {
420 this.fileretention = fileretention;
421 }
422
423 /**
424 * @return
425 * @uml.property name="jobretention"
426 */
427 public String getJobretention() {
428 return jobretention;
429 }
430
431 /**
432 * @param jobretention
433 * @uml.property name="jobretention"
434 */
435 public void setJobretention(String jobretention) {
436 this.jobretention = jobretention;
437 }
438
439 /**
440 * @return
441 * @uml.property name="cleaningprefix"
442 */
443 public String getCleaningprefix() {
444 return cleaningprefix;
445 }
446
447 /**
448 * @param cleaningprefix
449 * @uml.property name="cleaningprefix"
450 */
451 public void setCleaningprefix(String cleaningprefix) {
452 this.cleaningprefix = cleaningprefix;
453 }
454
455 /**
456 * @return
457 * @uml.property name="labelformat"
458 */
459 public String getLabelformat() {
460 return labelformat;
461 }
462
463 /**
464 * @param labelformat
465 * @uml.property name="labelformat"
466 */
467 public void setLabelformat(String labelformat) {
468 this.labelformat = labelformat;
469 }
470}
471
Note: See TracBrowser for help on using the repository browser.