StorageEntry.java 1.6 KB
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;
	}

}