source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDDeviceItem.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: 17.4 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class SDDeviceItem extends ItemType implements UserObjectItem{
3 /**
4 * @uml.property name="name"
5 */
6 private String name;
7 /**
8 * @uml.property name="archivedevice"
9 */
10 private String archivedevice;
11 /**
12 * @uml.property name="devicetype"
13 */
14 private String devicetype;
15 /**
16 * @uml.property name="mediatype"
17 */
18 private String mediatype;
19 /**
20 * @uml.property name="autochanger"
21 */
22 private String autochanger;
23 /**
24 * @uml.property name="changerdevice"
25 */
26 private String changerdevice;
27 /**
28 * @uml.property name="changercommand"
29 */
30 private String changercommand;
31 /**
32 * @uml.property name="alertcommand"
33 */
34 private String alertcommand;
35 /**
36 * @uml.property name="driveindex"
37 */
38 private String driveindex;
39 /**
40 * @uml.property name="autoselect"
41 */
42 private String autoselect;
43 /**
44 * @uml.property name="maximumconcurentjobs"
45 */
46 private String maximumconcurentjobs;
47 /**
48 * @uml.property name="maximumchangerwait"
49 */
50 private String maximumchangerwait;
51 /**
52 * @uml.property name="maximumrewindwait"
53 */
54 private String maximumrewindwait;
55 /**
56 * @uml.property name="maximumopenwait"
57 */
58 private String maximumopenwait;
59 /**
60 * @uml.property name="alwaysopen"
61 */
62 private String alwaysopen;
63 /**
64 * @uml.property name="volumepollinterval"
65 */
66 private String volumepollinterval;
67 /**
68 * @uml.property name="closeonpoll"
69 */
70 private String closeonpoll;
71 //private String maximumOpenWait;
72 /**
73 * @uml.property name="removablemedia"
74 */
75 private String removablemedia;
76 /**
77 * @uml.property name="randomaccess"
78 */
79 private String randomaccess;
80 /**
81 * @uml.property name="requiresmount"
82 */
83 private String requiresmount;
84 /**
85 * @uml.property name="mountpoint"
86 */
87 private String mountpoint;
88 /**
89 * @uml.property name="mountcommand"
90 */
91 private String mountcommand;
92 /**
93 * @uml.property name="unmountcommand"
94 */
95 private String unmountcommand;
96 /**
97 * @uml.property name="blockchecksum"
98 */
99 private String blockchecksum;
100 /**
101 * @uml.property name="minimumblocksize"
102 */
103 private String minimumblocksize;
104 /**
105 * @uml.property name="maximumblocksize"
106 */
107 private String maximumblocksize;
108 /**
109 * @uml.property name="hardwareendofmedium"
110 */
111 private String hardwareendofmedium;
112 /**
113 * @uml.property name="fastforwardspacefile"
114 */
115 private String fastforwardspacefile;
116 /**
117 * @uml.property name="usemtiocget"
118 */
119 private String usemtiocget;
120 /**
121 * @uml.property name="bsfateom"
122 */
123 private String bsfateom;
124 /**
125 * @uml.property name="twoeof"
126 */
127 private String twoeof;
128 /**
129 * @uml.property name="backwardspacerecord"
130 */
131 private String backwardspacerecord;
132 /**
133 * @uml.property name="backwardspacefile"
134 */
135 private String backwardspacefile;
136 /**
137 * @uml.property name="forwardspacerecord"
138 */
139 private String forwardspacerecord;
140 /**
141 * @uml.property name="forwardspacefile"
142 */
143 private String forwardspacefile;
144 /**
145 * @uml.property name="offlineonunmount"
146 */
147 private String offlineonunmount;
148 /**
149 * @uml.property name="maximumconcurrentjobs"
150 */
151 private String maximumconcurrentjobs;
152 /**
153 * @uml.property name="maximumvolumesize"
154 */
155 private String maximumvolumesize;
156 /**
157 * @uml.property name="maximumfilesize"
158 */
159 private String maximumfilesize;
160 /**
161 * @uml.property name="blockpositioning"
162 */
163 private String blockpositioning;
164 /**
165 * @uml.property name="maximumnetworkbuffersize"
166 */
167 private String maximumnetworkbuffersize;
168 /**
169 * @uml.property name="maximumspoolsize"
170 */
171 private String maximumspoolsize;
172 /**
173 * @uml.property name="maximumjobspoolsize"
174 */
175 private String maximumjobspoolsize;
176 /**
177 * @uml.property name="spooldirectory"
178 */
179 private String spooldirectory;
180 /**
181 * @uml.property name="maximumpartsize"
182 */
183 private String maximumpartsize;
184
185 public SDDeviceItem(){}
186
187 /**
188 * @return
189 * @uml.property name="name"
190 */
191 public String getName() {
192 return name;
193 }
194
195 /**
196 * @param name
197 * @uml.property name="name"
198 */
199 public void setName(String name) {
200 this.name = name;
201 }
202
203 /**
204 * @return
205 * @uml.property name="archivedevice"
206 */
207 public String getArchivedevice() {
208 return archivedevice;
209 }
210
211 /**
212 * @param archivedevice
213 * @uml.property name="archivedevice"
214 */
215 public void setArchivedevice(String archivedevice) {
216 this.archivedevice = archivedevice;
217 }
218
219 /**
220 * @return
221 * @uml.property name="devicetype"
222 */
223 public String getDevicetype() {
224 return devicetype;
225 }
226
227 /**
228 * @param devicetype
229 * @uml.property name="devicetype"
230 */
231 public void setDevicetype(String devicetype) {
232 this.devicetype = devicetype;
233 }
234
235 /**
236 * @return
237 * @uml.property name="mediatype"
238 */
239 public String getMediatype() {
240 return mediatype;
241 }
242
243 /**
244 * @param mediatype
245 * @uml.property name="mediatype"
246 */
247 public void setMediatype(String mediatype) {
248 this.mediatype = mediatype;
249 }
250
251 /**
252 * @return
253 * @uml.property name="autochanger"
254 */
255 public String getAutochanger() {
256 return autochanger;
257 }
258
259 /**
260 * @param autochanger
261 * @uml.property name="autochanger"
262 */
263 public void setAutochanger(String autochanger) {
264 this.autochanger = autochanger;
265 }
266
267 /**
268 * @return
269 * @uml.property name="changerdevice"
270 */
271 public String getChangerdevice() {
272 return changerdevice;
273 }
274
275 /**
276 * @param changerdevice
277 * @uml.property name="changerdevice"
278 */
279 public void setChangerdevice(String changerdevice) {
280 this.changerdevice = changerdevice;
281 }
282
283 /**
284 * @return
285 * @uml.property name="changercommand"
286 */
287 public String getChangercommand() {
288 return changercommand;
289 }
290
291 /**
292 * @param changercommand
293 * @uml.property name="changercommand"
294 */
295 public void setChangercommand(String changercommand) {
296 this.changercommand = changercommand;
297 }
298
299 /**
300 * @return
301 * @uml.property name="alertcommand"
302 */
303 public String getAlertcommand() {
304 return alertcommand;
305 }
306
307 /**
308 * @param alertcommand
309 * @uml.property name="alertcommand"
310 */
311 public void setAlertcommand(String alertcommand) {
312 this.alertcommand = alertcommand;
313 }
314
315 /**
316 * @return
317 * @uml.property name="driveindex"
318 */
319 public String getDriveindex() {
320 return driveindex;
321 }
322
323 /**
324 * @param driveindex
325 * @uml.property name="driveindex"
326 */
327 public void setDriveindex(String driveindex) {
328 this.driveindex = driveindex;
329 }
330
331 /**
332 * @return
333 * @uml.property name="autoselect"
334 */
335 public String getAutoselect() {
336 return autoselect;
337 }
338
339 /**
340 * @param autoselect
341 * @uml.property name="autoselect"
342 */
343 public void setAutoselect(String autoselect) {
344 this.autoselect = autoselect;
345 }
346
347 /**
348 * @return
349 * @uml.property name="maximumconcurentjobs"
350 */
351 public String getMaximumconcurentjobs() {
352 return maximumconcurentjobs;
353 }
354
355 /**
356 * @param maximumconcurentjobs
357 * @uml.property name="maximumconcurentjobs"
358 */
359 public void setMaximumconcurentjobs(String maximumconcurentjobs) {
360 this.maximumconcurentjobs = maximumconcurentjobs;
361 }
362
363 /**
364 * @return
365 * @uml.property name="maximumchangerwait"
366 */
367 public String getMaximumchangerwait() {
368 return maximumchangerwait;
369 }
370
371 /**
372 * @param maximumchangerwait
373 * @uml.property name="maximumchangerwait"
374 */
375 public void setMaximumchangerwait(String maximumchangerwait) {
376 this.maximumchangerwait = maximumchangerwait;
377 }
378
379 /**
380 * @return
381 * @uml.property name="maximumrewindwait"
382 */
383 public String getMaximumrewindwait() {
384 return maximumrewindwait;
385 }
386
387 /**
388 * @param maximumrewindwait
389 * @uml.property name="maximumrewindwait"
390 */
391 public void setMaximumrewindwait(String maximumrewindwait) {
392 this.maximumrewindwait = maximumrewindwait;
393 }
394
395 /**
396 * @return
397 * @uml.property name="maximumopenwait"
398 */
399 public String getMaximumopenwait() {
400 return maximumopenwait;
401 }
402
403 /**
404 * @param maximumopenwait
405 * @uml.property name="maximumopenwait"
406 */
407 public void setMaximumopenwait(String maximumopenwait) {
408 this.maximumopenwait = maximumopenwait;
409 }
410
411 /**
412 * @return
413 * @uml.property name="alwaysopen"
414 */
415 public String getAlwaysopen() {
416 return alwaysopen;
417 }
418
419 /**
420 * @param alwaysopen
421 * @uml.property name="alwaysopen"
422 */
423 public void setAlwaysopen(String alwaysopen) {
424 this.alwaysopen = alwaysopen;
425 }
426
427 /**
428 * @return
429 * @uml.property name="volumepollinterval"
430 */
431 public String getVolumepollinterval() {
432 return volumepollinterval;
433 }
434
435 /**
436 * @param volumepollinterval
437 * @uml.property name="volumepollinterval"
438 */
439 public void setVolumepollinterval(String volumepollinterval) {
440 this.volumepollinterval = volumepollinterval;
441 }
442
443 /**
444 * @return
445 * @uml.property name="closeonpoll"
446 */
447 public String getCloseonpoll() {
448 return closeonpoll;
449 }
450
451 /**
452 * @param closeonpoll
453 * @uml.property name="closeonpoll"
454 */
455 public void setCloseonpoll(String closeonpoll) {
456 this.closeonpoll = closeonpoll;
457 }
458
459 /**
460 * @return
461 * @uml.property name="removablemedia"
462 */
463 public String getRemovablemedia() {
464 return removablemedia;
465 }
466
467 /**
468 * @param removablemedia
469 * @uml.property name="removablemedia"
470 */
471 public void setRemovablemedia(String removablemedia) {
472 this.removablemedia = removablemedia;
473 }
474
475 /**
476 * @return
477 * @uml.property name="randomaccess"
478 */
479 public String getRandomaccess() {
480 return randomaccess;
481 }
482
483 /**
484 * @param randomaccess
485 * @uml.property name="randomaccess"
486 */
487 public void setRandomaccess(String randomaccess) {
488 this.randomaccess = randomaccess;
489 }
490
491 /**
492 * @return
493 * @uml.property name="requiresmount"
494 */
495 public String getRequiresmount() {
496 return requiresmount;
497 }
498
499 /**
500 * @param requiresmount
501 * @uml.property name="requiresmount"
502 */
503 public void setRequiresmount(String requiresmount) {
504 this.requiresmount = requiresmount;
505 }
506
507 /**
508 * @return
509 * @uml.property name="mountpoint"
510 */
511 public String getMountpoint() {
512 return mountpoint;
513 }
514
515 /**
516 * @param mountpoint
517 * @uml.property name="mountpoint"
518 */
519 public void setMountpoint(String mountpoint) {
520 this.mountpoint = mountpoint;
521 }
522
523 /**
524 * @return
525 * @uml.property name="mountcommand"
526 */
527 public String getMountcommand() {
528 return mountcommand;
529 }
530
531 /**
532 * @param mountcommand
533 * @uml.property name="mountcommand"
534 */
535 public void setMountcommand(String mountcommand) {
536 this.mountcommand = mountcommand;
537 }
538
539 /**
540 * @return
541 * @uml.property name="unmountcommand"
542 */
543 public String getUnmountcommand() {
544 return unmountcommand;
545 }
546
547 /**
548 * @param unmountcommand
549 * @uml.property name="unmountcommand"
550 */
551 public void setUnmountcommand(String unmountcommand) {
552 this.unmountcommand = unmountcommand;
553 }
554
555 /**
556 * @return
557 * @uml.property name="blockchecksum"
558 */
559 public String getBlockchecksum() {
560 return blockchecksum;
561 }
562
563 /**
564 * @param blockchecksum
565 * @uml.property name="blockchecksum"
566 */
567 public void setBlockchecksum(String blockchecksum) {
568 this.blockchecksum = blockchecksum;
569 }
570
571 /**
572 * @return
573 * @uml.property name="minimumblocksize"
574 */
575 public String getMinimumblocksize() {
576 return minimumblocksize;
577 }
578
579 /**
580 * @param minimumblocksize
581 * @uml.property name="minimumblocksize"
582 */
583 public void setMinimumblocksize(String minimumblocksize) {
584 this.minimumblocksize = minimumblocksize;
585 }
586
587 /**
588 * @return
589 * @uml.property name="maximumblocksize"
590 */
591 public String getMaximumblocksize() {
592 return maximumblocksize;
593 }
594
595 /**
596 * @param maximumblocksize
597 * @uml.property name="maximumblocksize"
598 */
599 public void setMaximumblocksize(String maximumblocksize) {
600 this.maximumblocksize = maximumblocksize;
601 }
602
603 /**
604 * @return
605 * @uml.property name="hardwareendofmedium"
606 */
607 public String getHardwareendofmedium() {
608 return hardwareendofmedium;
609 }
610
611 /**
612 * @param hardwareendofmedium
613 * @uml.property name="hardwareendofmedium"
614 */
615 public void setHardwareendofmedium(String hardwareendofmedium) {
616 this.hardwareendofmedium = hardwareendofmedium;
617 }
618
619 /**
620 * @return
621 * @uml.property name="fastforwardspacefile"
622 */
623 public String getFastforwardspacefile() {
624 return fastforwardspacefile;
625 }
626
627 /**
628 * @param fastforwardspacefile
629 * @uml.property name="fastforwardspacefile"
630 */
631 public void setFastforwardspacefile(String fastforwardspacefile) {
632 this.fastforwardspacefile = fastforwardspacefile;
633 }
634
635 /**
636 * @return
637 * @uml.property name="usemtiocget"
638 */
639 public String getUsemtiocget() {
640 return usemtiocget;
641 }
642
643 /**
644 * @param usemtiocget
645 * @uml.property name="usemtiocget"
646 */
647 public void setUsemtiocget(String usemtiocget) {
648 this.usemtiocget = usemtiocget;
649 }
650
651 /**
652 * @return
653 * @uml.property name="bsfateom"
654 */
655 public String getBsfateom() {
656 return bsfateom;
657 }
658
659 /**
660 * @param bsfateom
661 * @uml.property name="bsfateom"
662 */
663 public void setBsfateom(String bsfateom) {
664 this.bsfateom = bsfateom;
665 }
666
667 /**
668 * @return
669 * @uml.property name="twoeof"
670 */
671 public String getTwoeof() {
672 return twoeof;
673 }
674
675 /**
676 * @param twoeof
677 * @uml.property name="twoeof"
678 */
679 public void setTwoeof(String twoeof) {
680 this.twoeof = twoeof;
681 }
682
683 /**
684 * @return
685 * @uml.property name="backwardspacerecord"
686 */
687 public String getBackwardspacerecord() {
688 return backwardspacerecord;
689 }
690
691 /**
692 * @param backwardspacerecord
693 * @uml.property name="backwardspacerecord"
694 */
695 public void setBackwardspacerecord(String backwardspacerecord) {
696 this.backwardspacerecord = backwardspacerecord;
697 }
698
699 /**
700 * @return
701 * @uml.property name="backwardspacefile"
702 */
703 public String getBackwardspacefile() {
704 return backwardspacefile;
705 }
706
707 /**
708 * @param backwardspacefile
709 * @uml.property name="backwardspacefile"
710 */
711 public void setBackwardspacefile(String backwardspacefile) {
712 this.backwardspacefile = backwardspacefile;
713 }
714
715 /**
716 * @return
717 * @uml.property name="forwardspacerecord"
718 */
719 public String getForwardspacerecord() {
720 return forwardspacerecord;
721 }
722
723 /**
724 * @param forwardspacerecord
725 * @uml.property name="forwardspacerecord"
726 */
727 public void setForwardspacerecord(String forwardspacerecord) {
728 this.forwardspacerecord = forwardspacerecord;
729 }
730
731 /**
732 * @return
733 * @uml.property name="forwardspacefile"
734 */
735 public String getForwardspacefile() {
736 return forwardspacefile;
737 }
738
739 /**
740 * @param forwardspacefile
741 * @uml.property name="forwardspacefile"
742 */
743 public void setForwardspacefile(String forwardspacefile) {
744 this.forwardspacefile = forwardspacefile;
745 }
746
747 /**
748 * @return
749 * @uml.property name="offlineonunmount"
750 */
751 public String getOfflineonunmount() {
752 return offlineonunmount;
753 }
754
755 /**
756 * @param offlineonunmount
757 * @uml.property name="offlineonunmount"
758 */
759 public void setOfflineonunmount(String offlineonunmount) {
760 this.offlineonunmount = offlineonunmount;
761 }
762
763 /**
764 * @return
765 * @uml.property name="maximumconcurrentjobs"
766 */
767 public String getMaximumconcurrentjobs() {
768 return maximumconcurrentjobs;
769 }
770
771 /**
772 * @param maximumconcurrentjobs
773 * @uml.property name="maximumconcurrentjobs"
774 */
775 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
776 this.maximumconcurrentjobs = maximumconcurrentjobs;
777 }
778
779 /**
780 * @return
781 * @uml.property name="maximumvolumesize"
782 */
783 public String getMaximumvolumesize() {
784 return maximumvolumesize;
785 }
786
787 /**
788 * @param maximumvolumesize
789 * @uml.property name="maximumvolumesize"
790 */
791 public void setMaximumvolumesize(String maximumvolumesize) {
792 this.maximumvolumesize = maximumvolumesize;
793 }
794
795 /**
796 * @return
797 * @uml.property name="maximumfilesize"
798 */
799 public String getMaximumfilesize() {
800 return maximumfilesize;
801 }
802
803 /**
804 * @param maximumfilesize
805 * @uml.property name="maximumfilesize"
806 */
807 public void setMaximumfilesize(String maximumfilesize) {
808 this.maximumfilesize = maximumfilesize;
809 }
810
811 /**
812 * @return
813 * @uml.property name="blockpositioning"
814 */
815 public String getBlockpositioning() {
816 return blockpositioning;
817 }
818
819 /**
820 * @param blockpositioning
821 * @uml.property name="blockpositioning"
822 */
823 public void setBlockpositioning(String blockpositioning) {
824 this.blockpositioning = blockpositioning;
825 }
826
827 /**
828 * @return
829 * @uml.property name="maximumnetworkbuffersize"
830 */
831 public String getMaximumnetworkbuffersize() {
832 return maximumnetworkbuffersize;
833 }
834
835 /**
836 * @param maximumnetworkbuffersize
837 * @uml.property name="maximumnetworkbuffersize"
838 */
839 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) {
840 this.maximumnetworkbuffersize = maximumnetworkbuffersize;
841 }
842
843 /**
844 * @return
845 * @uml.property name="maximumspoolsize"
846 */
847 public String getMaximumspoolsize() {
848 return maximumspoolsize;
849 }
850
851 /**
852 * @param maximumspoolsize
853 * @uml.property name="maximumspoolsize"
854 */
855 public void setMaximumspoolsize(String maximumspoolsize) {
856 this.maximumspoolsize = maximumspoolsize;
857 }
858
859 /**
860 * @return
861 * @uml.property name="maximumjobspoolsize"
862 */
863 public String getMaximumjobspoolsize() {
864 return maximumjobspoolsize;
865 }
866
867 /**
868 * @param maximumjobspoolsize
869 * @uml.property name="maximumjobspoolsize"
870 */
871 public void setMaximumjobspoolsize(String maximumjobspoolsize) {
872 this.maximumjobspoolsize = maximumjobspoolsize;
873 }
874
875 /**
876 * @return
877 * @uml.property name="spooldirectory"
878 */
879 public String getSpooldirectory() {
880 return spooldirectory;
881 }
882
883 /**
884 * @param spooldirectory
885 * @uml.property name="spooldirectory"
886 */
887 public void setSpooldirectory(String spooldirectory) {
888 this.spooldirectory = spooldirectory;
889 }
890
891 /**
892 * @return
893 * @uml.property name="maximumpartsize"
894 */
895 public String getMaximumpartsize() {
896 return maximumpartsize;
897 }
898
899 /**
900 * @param maximumpartsize
901 * @uml.property name="maximumpartsize"
902 */
903 public void setMaximumpartsize(String maximumpartsize) {
904 this.maximumpartsize = maximumpartsize;
905 }
906
907
908
909}
Note: See TracBrowser for help on using the repository browser.