source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/StorageItem.java@ 865

Last change on this file since 865 was 865, checked in by tobias, on Apr 20, 2010 at 5:21:42 PM

comments added
all methods of the wsdl file implemented

File size: 1.8 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class StorageItem extends ItemType implements UserObjectItem{
3
4 private String name;
5 private String address;
6 private String sdport;
7 private String password;
8 private String device;
9 private String mediatype;
10 private String autochanger;
11 private String maximumconcurrentjobs;
12 private String allowcompression;
13 private String heartbeatinterval;
14
15 public StorageItem() {}
16
17 public String getName() {
18 return name;
19 }
20
21 public void setName(String name) {
22 this.name = name;
23 }
24
25 public String getAddress() {
26 return address;
27 }
28
29 public void setAddress(String address) {
30 this.address = address;
31 }
32
33 public String getSdport() {
34 return sdport;
35 }
36
37 public void setSdport(String sdport) {
38 this.sdport = sdport;
39 }
40
41 public String getPassword() {
42 return password;
43 }
44
45 public void setPassword(String password) {
46 this.password = password;
47 }
48
49 public String getDevice() {
50 return device;
51 }
52
53 public void setDevice(String device) {
54 this.device = device;
55 }
56
57 public String getMediatype() {
58 return mediatype;
59 }
60
61 public void setMediatype(String mediatype) {
62 this.mediatype = mediatype;
63 }
64
65 public String getAutochanger() {
66 return autochanger;
67 }
68
69 public void setAutochanger(String autochanger) {
70 this.autochanger = autochanger;
71 }
72
73 public String getMaximumconcurrentjobs() {
74 return maximumconcurrentjobs;
75 }
76
77 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
78 this.maximumconcurrentjobs = maximumconcurrentjobs;
79 }
80
81 public String getAllowcompression() {
82 return allowcompression;
83 }
84
85 public void setAllowcompression(String allowcompression) {
86 this.allowcompression = allowcompression;
87 }
88
89 public String getHeartbeatinterval() {
90 return heartbeatinterval;
91 }
92
93 public void setHeartbeatinterval(String heartbeatinterval) {
94 this.heartbeatinterval = heartbeatinterval;
95 }
96
97
98
99}
Note: See TracBrowser for help on using the repository browser.