StorageEntry.java
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.sitech.ismp.coll.centercoll.windows;
public class StorageEntry {
public String rowIndex;
public String storageIndex;
public String storageDescr;
public String storageType;
public String storageAllocationUnits;
public String storageSize;
public String storageUsed;
public String storageAllocationFailures;
public String getStorageIndex() {
return storageIndex;
}
public void setStorageIndex(String storageIndex) {
this.storageIndex = storageIndex;
}
public String getStorageDescr() {
return storageDescr;
}
public void setStorageDescr(String storageDescr) {
this.storageDescr = storageDescr;
}
public String getStorageType() {
return storageType;
}
public void setStorageType(String storageType) {
this.storageType = storageType;
}
public String getStorageAllocationUnits() {
return storageAllocationUnits;
}
public void setStorageAllocationUnits(String storageAllocationUnits) {
this.storageAllocationUnits = storageAllocationUnits;
}
public String getStorageSize() {
return storageSize;
}
public void setStorageSize(String storageSize) {
this.storageSize = storageSize;
}
public String getStorageUsed() {
return storageUsed;
}
public void setStorageUsed(String storageUsed) {
this.storageUsed = storageUsed;
}
public String getStorageAllocationFailures() {
return storageAllocationFailures;
}
public void setStorageAllocationFailures(String storageAllocationFailures) {
this.storageAllocationFailures = storageAllocationFailures;
}
public String getRowIndex() {
return rowIndex;
}
public void setRowIndex(String rowIndex) {
this.rowIndex = rowIndex;
}
}