TemperatureEntry.java
1022 Bytes
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
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;
}
}