TemperatureEntry.java 1022 Bytes
package com.sitech.ismp.coll.net.cisco;

public class TemperatureEntry {
	private String RowIndex;
	private String StatusDesc;
	private String StatusValue;
	private String Threshold;
	private String LastShutdown;
	private String State;
	
	public String getLastShutdown() {
		return LastShutdown;
	}
	public void setLastShutdown(String lastShutdown) {
		LastShutdown = lastShutdown;
	}
	public String getRowIndex() {
		return RowIndex;
	}
	public void setRowIndex(String rowIndex) {
		RowIndex = rowIndex;
	}
	public String getStatusDesc() {
		return StatusDesc;
	}
	public void setStatusDesc(String statusDesc) {
		StatusDesc = statusDesc;
	}
	public String getStatusValue() {
		return StatusValue;
	}
	public void setStatusValue(String statusValue) {
		StatusValue = statusValue;
	}
	public String getThreshold() {
		return Threshold;
	}
	public void setThreshold(String threshold) {
		Threshold = threshold;
	}
	public String getState() {
		return State;
	}
	public void setState(String state) {
		State = state;
	}
	
}