source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/PoolItem.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: 4.5 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class PoolItem extends ItemType implements UserObjectItem{
3 private String name;
4 private String maximumvolumes;
5 private String pooltype;
6 private String storage;
7 private String usevolumeonce;
8 private String maximumvolumejobs;
9 private String maximumvolumefiles;
10 private String maximumvolumebytes;
11 private String volumeuseduration;
12 private String catalogfiles;
13 private String autoprune;
14 private String volumeretention;
15 private String actiononpurge;
16 private String scratchpool;
17 private String recyclepool;
18 private String recycle;
19 private String recycleoldestvolume;
20 private String recyclecurrentvolume;
21 private String purgeoldestvolume;
22 private String fileretention;
23 private String jobretention;
24 private String cleaningprefix;
25 private String labelformat;
26
27 public PoolItem() {}
28
29 public PoolItem(String name, String pooltype){
30 setName(name);
31 setPooltype(pooltype);
32 }
33
34 public String getName() {
35 return name;
36 }
37
38 public void setName(String name) {
39 this.name = name;
40 }
41
42 public String getMaximumvolumes() {
43 return maximumvolumes;
44 }
45
46 public void setMaximumvolumes(String maximumvolumes) {
47 this.maximumvolumes = maximumvolumes;
48 }
49
50 public String getPooltype() {
51 return pooltype;
52 }
53
54 public void setPooltype(String pooltype) {
55 this.pooltype = pooltype;
56 }
57
58 public String getStorage() {
59 return storage;
60 }
61
62 public void setStorage(String storage) {
63 this.storage = storage;
64 }
65
66 public String getUsevolumeonce() {
67 return usevolumeonce;
68 }
69
70 public void setUsevolumeonce(String usevolumeonce) {
71 this.usevolumeonce = usevolumeonce;
72 }
73
74 public String getMaximumvolumejobs() {
75 return maximumvolumejobs;
76 }
77
78 public void setMaximumvolumejobs(String maximumvolumejobs) {
79 this.maximumvolumejobs = maximumvolumejobs;
80 }
81
82 public String getMaximumvolumefiles() {
83 return maximumvolumefiles;
84 }
85
86 public void setMaximumvolumefiles(String maximumvolumefiles) {
87 this.maximumvolumefiles = maximumvolumefiles;
88 }
89
90 public String getMaximumvolumebytes() {
91 return maximumvolumebytes;
92 }
93
94 public void setMaximumvolumebytes(String maximumvolumebytes) {
95 this.maximumvolumebytes = maximumvolumebytes;
96 }
97
98 public String getVolumeuseduration() {
99 return volumeuseduration;
100 }
101
102 public void setVolumeuseduration(String volumeuseduration) {
103 this.volumeuseduration = volumeuseduration;
104 }
105
106 public String getCatalogfiles() {
107 return catalogfiles;
108 }
109
110 public void setCatalogfiles(String catalogfiles) {
111 this.catalogfiles = catalogfiles;
112 }
113
114 public String getAutoprune() {
115 return autoprune;
116 }
117
118 public void setAutoprune(String autoprune) {
119 this.autoprune = autoprune;
120 }
121
122 public String getVolumeretention() {
123 return volumeretention;
124 }
125
126 public void setVolumeretention(String volumeretention) {
127 this.volumeretention = volumeretention;
128 }
129
130 public String getActiononpurge() {
131 return actiononpurge;
132 }
133
134 public void setActiononpurge(String actiononpurge) {
135 this.actiononpurge = actiononpurge;
136 }
137
138 public String getScratchpool() {
139 return scratchpool;
140 }
141
142 public void setScratchpool(String scratchpool) {
143 this.scratchpool = scratchpool;
144 }
145
146 public String getRecyclepool() {
147 return recyclepool;
148 }
149
150 public void setRecyclepool(String recyclepool) {
151 this.recyclepool = recyclepool;
152 }
153
154 public String getRecycle() {
155 return recycle;
156 }
157
158 public void setRecycle(String recycle) {
159 this.recycle = recycle;
160 }
161
162 public String getRecycleoldestvolume() {
163 return recycleoldestvolume;
164 }
165
166 public void setRecycleoldestvolume(String recycleoldestvolume) {
167 this.recycleoldestvolume = recycleoldestvolume;
168 }
169
170 public String getRecyclecurrentvolume() {
171 return recyclecurrentvolume;
172 }
173
174 public void setRecyclecurrentvolume(String recyclecurrentvolume) {
175 this.recyclecurrentvolume = recyclecurrentvolume;
176 }
177
178 public String getPurgeoldestvolume() {
179 return purgeoldestvolume;
180 }
181
182 public void setPurgeoldestvolume(String purgeoldestvolume) {
183 this.purgeoldestvolume = purgeoldestvolume;
184 }
185
186 public String getFileretention() {
187 return fileretention;
188 }
189
190 public void setFileretention(String fileretention) {
191 this.fileretention = fileretention;
192 }
193
194 public String getJobretention() {
195 return jobretention;
196 }
197
198 public void setJobretention(String jobretention) {
199 this.jobretention = jobretention;
200 }
201
202 public String getCleaningprefix() {
203 return cleaningprefix;
204 }
205
206 public void setCleaningprefix(String cleaningprefix) {
207 this.cleaningprefix = cleaningprefix;
208 }
209
210 public String getLabelformat() {
211 return labelformat;
212 }
213
214 public void setLabelformat(String labelformat) {
215 this.labelformat = labelformat;
216 }
217}
218
Note: See TracBrowser for help on using the repository browser.