1 | package de.dass_it.vanhelsing.gui.items;
|
---|
2 | public class SDDeviceItem extends ItemType implements UserObjectItem{
|
---|
3 | private String name;
|
---|
4 | private String archiveDevice;
|
---|
5 | private String deviceType;
|
---|
6 | private String mediaType;
|
---|
7 | private String autochanger;
|
---|
8 | private String changerDevice;
|
---|
9 | private String changerCommand;
|
---|
10 | private String alertCommand;
|
---|
11 | private String driveIndex;
|
---|
12 | private String autoselect;
|
---|
13 | private String maximumConcurentJobs;
|
---|
14 | private String maximumChangerWait;
|
---|
15 | private String maximumRewindWait;
|
---|
16 | private String maximumOpenWait;
|
---|
17 | private String alwaysOpen;
|
---|
18 | private String volumePollInterval;
|
---|
19 | private String closeonPoll;
|
---|
20 | //private String maximumOpenWait;
|
---|
21 | private String removablemedia;
|
---|
22 | private String randomaccess;
|
---|
23 | private String requiresMount;
|
---|
24 | private String mountPoint;
|
---|
25 | private String mountCommand;
|
---|
26 | private String unmountCommand;
|
---|
27 | private String blockChecksum;
|
---|
28 | private String minimumblocksize;
|
---|
29 | private String maximumblocksize;
|
---|
30 | private String hardwareEndofMedium;
|
---|
31 | private String fastForwardSpaceFile;
|
---|
32 | private String useMTIOCGET;
|
---|
33 | private String bsfAtEOM;
|
---|
34 | private String twoEOF;
|
---|
35 | private String backwardSpaceRecord;
|
---|
36 | private String backwardSpaceFile;
|
---|
37 | private String forwardSpaceRecord;
|
---|
38 | private String forwardSpaceFile;
|
---|
39 | private String offlineOnUnmount;
|
---|
40 | private String maximumConcurrentJobs;
|
---|
41 | private String maximumVolumeSize;
|
---|
42 | private String maximumFileSize;
|
---|
43 | private String blockPositioning;
|
---|
44 | private String maximumNetworkBufferSize;
|
---|
45 | private String maximumSpoolSize;
|
---|
46 | private String maximumJobSpoolSize;
|
---|
47 | private String spoolDirectory;
|
---|
48 | private String maximumPartSize;
|
---|
49 |
|
---|
50 | public SDDeviceItem(){}
|
---|
51 |
|
---|
52 | public String getName() {
|
---|
53 | return name;
|
---|
54 | }
|
---|
55 |
|
---|
56 | public void setName(String name) {
|
---|
57 | this.name = name;
|
---|
58 | }
|
---|
59 |
|
---|
60 | public String getArchiveDevice() {
|
---|
61 | return archiveDevice;
|
---|
62 | }
|
---|
63 |
|
---|
64 | public void setArchiveDevice(String archiveDevice) {
|
---|
65 | this.archiveDevice = archiveDevice;
|
---|
66 | }
|
---|
67 |
|
---|
68 | public String getDeviceType() {
|
---|
69 | return deviceType;
|
---|
70 | }
|
---|
71 |
|
---|
72 | public void setDeviceType(String deviceType) {
|
---|
73 | this.deviceType = deviceType;
|
---|
74 | }
|
---|
75 |
|
---|
76 | public String getMediaType() {
|
---|
77 | return mediaType;
|
---|
78 | }
|
---|
79 |
|
---|
80 | public void setMediaType(String mediaType) {
|
---|
81 | this.mediaType = mediaType;
|
---|
82 | }
|
---|
83 |
|
---|
84 | public String getAutochanger() {
|
---|
85 | return autochanger;
|
---|
86 | }
|
---|
87 |
|
---|
88 | public void setAutochanger(String autochanger) {
|
---|
89 | this.autochanger = autochanger;
|
---|
90 | }
|
---|
91 |
|
---|
92 | public String getChangerDevice() {
|
---|
93 | return changerDevice;
|
---|
94 | }
|
---|
95 |
|
---|
96 | public void setChangerDevice(String changerDevice) {
|
---|
97 | this.changerDevice = changerDevice;
|
---|
98 | }
|
---|
99 |
|
---|
100 | public String getChangerCommand() {
|
---|
101 | return changerCommand;
|
---|
102 | }
|
---|
103 |
|
---|
104 | public void setChangerCommand(String changerCommand) {
|
---|
105 | this.changerCommand = changerCommand;
|
---|
106 | }
|
---|
107 |
|
---|
108 | public String getAlertCommand() {
|
---|
109 | return alertCommand;
|
---|
110 | }
|
---|
111 |
|
---|
112 | public void setAlertCommand(String alertCommand) {
|
---|
113 | this.alertCommand = alertCommand;
|
---|
114 | }
|
---|
115 |
|
---|
116 | public String getDriveIndex() {
|
---|
117 | return driveIndex;
|
---|
118 | }
|
---|
119 |
|
---|
120 | public void setDriveIndex(String driveIndex) {
|
---|
121 | this.driveIndex = driveIndex;
|
---|
122 | }
|
---|
123 |
|
---|
124 | public String getAutoselect() {
|
---|
125 | return autoselect;
|
---|
126 | }
|
---|
127 |
|
---|
128 | public void setAutoselect(String autoselect) {
|
---|
129 | this.autoselect = autoselect;
|
---|
130 | }
|
---|
131 |
|
---|
132 | public String getMaximumConcurentJobs() {
|
---|
133 | return maximumConcurentJobs;
|
---|
134 | }
|
---|
135 |
|
---|
136 | public void setMaximumConcurentJobs(String maximumConcurentJobs) {
|
---|
137 | this.maximumConcurentJobs = maximumConcurentJobs;
|
---|
138 | }
|
---|
139 |
|
---|
140 | public String getMaximumChangerWait() {
|
---|
141 | return maximumChangerWait;
|
---|
142 | }
|
---|
143 |
|
---|
144 | public void setMaximumChangerWait(String maximumChangerWait) {
|
---|
145 | this.maximumChangerWait = maximumChangerWait;
|
---|
146 | }
|
---|
147 |
|
---|
148 | public String getMaximumRewindWait() {
|
---|
149 | return maximumRewindWait;
|
---|
150 | }
|
---|
151 |
|
---|
152 | public void setMaximumRewindWait(String maximumRewindWait) {
|
---|
153 | this.maximumRewindWait = maximumRewindWait;
|
---|
154 | }
|
---|
155 |
|
---|
156 | public String getMaximumOpenWait() {
|
---|
157 | return maximumOpenWait;
|
---|
158 | }
|
---|
159 |
|
---|
160 | public void setMaximumOpenWait(String maximumOpenWait) {
|
---|
161 | this.maximumOpenWait = maximumOpenWait;
|
---|
162 | }
|
---|
163 |
|
---|
164 | public String getAlwaysOpen() {
|
---|
165 | return alwaysOpen;
|
---|
166 | }
|
---|
167 |
|
---|
168 | public void setAlwaysOpen(String alwaysOpen) {
|
---|
169 | this.alwaysOpen = alwaysOpen;
|
---|
170 | }
|
---|
171 |
|
---|
172 | public String getVolumePollInterval() {
|
---|
173 | return volumePollInterval;
|
---|
174 | }
|
---|
175 |
|
---|
176 | public void setVolumePollInterval(String volumePollInterval) {
|
---|
177 | this.volumePollInterval = volumePollInterval;
|
---|
178 | }
|
---|
179 |
|
---|
180 | public String getCloseonPoll() {
|
---|
181 | return closeonPoll;
|
---|
182 | }
|
---|
183 |
|
---|
184 | public void setCloseonPoll(String closeonPoll) {
|
---|
185 | this.closeonPoll = closeonPoll;
|
---|
186 | }
|
---|
187 |
|
---|
188 | public String getRemovablemedia() {
|
---|
189 | return removablemedia;
|
---|
190 | }
|
---|
191 |
|
---|
192 | public void setRemovablemedia(String removablemedia) {
|
---|
193 | this.removablemedia = removablemedia;
|
---|
194 | }
|
---|
195 |
|
---|
196 | public String getRandomaccess() {
|
---|
197 | return randomaccess;
|
---|
198 | }
|
---|
199 |
|
---|
200 | public void setRandomaccess(String randomaccess) {
|
---|
201 | this.randomaccess = randomaccess;
|
---|
202 | }
|
---|
203 |
|
---|
204 | public String getRequiresMount() {
|
---|
205 | return requiresMount;
|
---|
206 | }
|
---|
207 |
|
---|
208 | public void setRequiresMount(String requiresMount) {
|
---|
209 | this.requiresMount = requiresMount;
|
---|
210 | }
|
---|
211 |
|
---|
212 | public String getMountPoint() {
|
---|
213 | return mountPoint;
|
---|
214 | }
|
---|
215 |
|
---|
216 | public void setMountPoint(String mountPoint) {
|
---|
217 | this.mountPoint = mountPoint;
|
---|
218 | }
|
---|
219 |
|
---|
220 | public String getMountCommand() {
|
---|
221 | return mountCommand;
|
---|
222 | }
|
---|
223 |
|
---|
224 | public void setMountCommand(String mountCommand) {
|
---|
225 | this.mountCommand = mountCommand;
|
---|
226 | }
|
---|
227 |
|
---|
228 | public String getUnmountCommand() {
|
---|
229 | return unmountCommand;
|
---|
230 | }
|
---|
231 |
|
---|
232 | public void setUnmountCommand(String unmountCommand) {
|
---|
233 | this.unmountCommand = unmountCommand;
|
---|
234 | }
|
---|
235 |
|
---|
236 | public String getBlockChecksum() {
|
---|
237 | return blockChecksum;
|
---|
238 | }
|
---|
239 |
|
---|
240 | public void setBlockChecksum(String blockChecksum) {
|
---|
241 | this.blockChecksum = blockChecksum;
|
---|
242 | }
|
---|
243 |
|
---|
244 | public String getMinimumblocksize() {
|
---|
245 | return minimumblocksize;
|
---|
246 | }
|
---|
247 |
|
---|
248 | public void setMinimumblocksize(String minimumblocksize) {
|
---|
249 | this.minimumblocksize = minimumblocksize;
|
---|
250 | }
|
---|
251 |
|
---|
252 | public String getMaximumblocksize() {
|
---|
253 | return maximumblocksize;
|
---|
254 | }
|
---|
255 |
|
---|
256 | public void setMaximumblocksize(String maximumblocksize) {
|
---|
257 | this.maximumblocksize = maximumblocksize;
|
---|
258 | }
|
---|
259 |
|
---|
260 | public String getHardwareEndofMedium() {
|
---|
261 | return hardwareEndofMedium;
|
---|
262 | }
|
---|
263 |
|
---|
264 | public void setHardwareEndofMedium(String hardwareEndofMedium) {
|
---|
265 | this.hardwareEndofMedium = hardwareEndofMedium;
|
---|
266 | }
|
---|
267 |
|
---|
268 | public String getFastForwardSpaceFile() {
|
---|
269 | return fastForwardSpaceFile;
|
---|
270 | }
|
---|
271 |
|
---|
272 | public void setFastForwardSpaceFile(String fastForwardSpaceFile) {
|
---|
273 | this.fastForwardSpaceFile = fastForwardSpaceFile;
|
---|
274 | }
|
---|
275 |
|
---|
276 | public String getUseMTIOCGET() {
|
---|
277 | return useMTIOCGET;
|
---|
278 | }
|
---|
279 |
|
---|
280 | public void setUseMTIOCGET(String useMTIOCGET) {
|
---|
281 | this.useMTIOCGET = useMTIOCGET;
|
---|
282 | }
|
---|
283 |
|
---|
284 | public String getBsfAtEOM() {
|
---|
285 | return bsfAtEOM;
|
---|
286 | }
|
---|
287 |
|
---|
288 | public void setBsfAtEOM(String bsfAtEOM) {
|
---|
289 | this.bsfAtEOM = bsfAtEOM;
|
---|
290 | }
|
---|
291 |
|
---|
292 | public String getTwoEOF() {
|
---|
293 | return twoEOF;
|
---|
294 | }
|
---|
295 |
|
---|
296 | public void setTwoEOF(String twoEOF) {
|
---|
297 | this.twoEOF = twoEOF;
|
---|
298 | }
|
---|
299 |
|
---|
300 | public String getBackwardSpaceRecord() {
|
---|
301 | return backwardSpaceRecord;
|
---|
302 | }
|
---|
303 |
|
---|
304 | public void setBackwardSpaceRecord(String backwardSpaceRecord) {
|
---|
305 | this.backwardSpaceRecord = backwardSpaceRecord;
|
---|
306 | }
|
---|
307 |
|
---|
308 | public String getBackwardSpaceFile() {
|
---|
309 | return backwardSpaceFile;
|
---|
310 | }
|
---|
311 |
|
---|
312 | public void setBackwardSpaceFile(String backwardSpaceFile) {
|
---|
313 | this.backwardSpaceFile = backwardSpaceFile;
|
---|
314 | }
|
---|
315 |
|
---|
316 | public String getForwardSpaceRecord() {
|
---|
317 | return forwardSpaceRecord;
|
---|
318 | }
|
---|
319 |
|
---|
320 | public void setForwardSpaceRecord(String forwardSpaceRecord) {
|
---|
321 | this.forwardSpaceRecord = forwardSpaceRecord;
|
---|
322 | }
|
---|
323 |
|
---|
324 | public String getForwardSpaceFile() {
|
---|
325 | return forwardSpaceFile;
|
---|
326 | }
|
---|
327 |
|
---|
328 | public void setForwardSpaceFile(String forwardSpaceFile) {
|
---|
329 | this.forwardSpaceFile = forwardSpaceFile;
|
---|
330 | }
|
---|
331 |
|
---|
332 | public String getOfflineOnUnmount() {
|
---|
333 | return offlineOnUnmount;
|
---|
334 | }
|
---|
335 |
|
---|
336 | public void setOfflineOnUnmount(String offlineOnUnmount) {
|
---|
337 | this.offlineOnUnmount = offlineOnUnmount;
|
---|
338 | }
|
---|
339 |
|
---|
340 | public String getMaximumConcurrentJobs() {
|
---|
341 | return maximumConcurrentJobs;
|
---|
342 | }
|
---|
343 |
|
---|
344 | public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
|
---|
345 | this.maximumConcurrentJobs = maximumConcurrentJobs;
|
---|
346 | }
|
---|
347 |
|
---|
348 | public String getMaximumVolumeSize() {
|
---|
349 | return maximumVolumeSize;
|
---|
350 | }
|
---|
351 |
|
---|
352 | public void setMaximumVolumeSize(String maximumVolumeSize) {
|
---|
353 | this.maximumVolumeSize = maximumVolumeSize;
|
---|
354 | }
|
---|
355 |
|
---|
356 | public String getMaximumFileSize() {
|
---|
357 | return maximumFileSize;
|
---|
358 | }
|
---|
359 |
|
---|
360 | public void setMaximumFileSize(String maximumFileSize) {
|
---|
361 | this.maximumFileSize = maximumFileSize;
|
---|
362 | }
|
---|
363 |
|
---|
364 | public String getBlockPositioning() {
|
---|
365 | return blockPositioning;
|
---|
366 | }
|
---|
367 |
|
---|
368 | public void setBlockPositioning(String blockPositioning) {
|
---|
369 | this.blockPositioning = blockPositioning;
|
---|
370 | }
|
---|
371 |
|
---|
372 | public String getMaximumNetworkBufferSize() {
|
---|
373 | return maximumNetworkBufferSize;
|
---|
374 | }
|
---|
375 |
|
---|
376 | public void setMaximumNetworkBufferSize(String maximumNetworkBufferSize) {
|
---|
377 | this.maximumNetworkBufferSize = maximumNetworkBufferSize;
|
---|
378 | }
|
---|
379 |
|
---|
380 | public String getMaximumSpoolSize() {
|
---|
381 | return maximumSpoolSize;
|
---|
382 | }
|
---|
383 |
|
---|
384 | public void setMaximumSpoolSize(String maximumSpoolSize) {
|
---|
385 | this.maximumSpoolSize = maximumSpoolSize;
|
---|
386 | }
|
---|
387 |
|
---|
388 | public String getMaximumJobSpoolSize() {
|
---|
389 | return maximumJobSpoolSize;
|
---|
390 | }
|
---|
391 |
|
---|
392 | public void setMaximumJobSpoolSize(String maximumJobSpoolSize) {
|
---|
393 | this.maximumJobSpoolSize = maximumJobSpoolSize;
|
---|
394 | }
|
---|
395 |
|
---|
396 | public String getSpoolDirectory() {
|
---|
397 | return spoolDirectory;
|
---|
398 | }
|
---|
399 |
|
---|
400 | public void setSpoolDirectory(String spoolDirectory) {
|
---|
401 | this.spoolDirectory = spoolDirectory;
|
---|
402 | }
|
---|
403 |
|
---|
404 | public String getMaximumPartSize() {
|
---|
405 | return maximumPartSize;
|
---|
406 | }
|
---|
407 |
|
---|
408 | public void setMaximumPartSize(String maximumPartSize) {
|
---|
409 | this.maximumPartSize = maximumPartSize;
|
---|
410 | }
|
---|
411 |
|
---|
412 |
|
---|
413 | }
|
---|