JuniperConnectionEntry.java
1.26 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
package com.sitech.ismp.coll.net.juniper.table;
public class JuniperConnectionEntry {
String rowIndex;
String nsPlyMonId;
String nsPlyMonPackPerMin;
String sPlyMonBytePerMin;
String nsPlyMonSessionPerMin;
String nsPlyMonTotalSession;
public String getRowIndex() {
return rowIndex;
}
public void setRowIndex(String rowIndex) {
this.rowIndex = rowIndex;
}
public String getNsPlyMonId() {
return nsPlyMonId;
}
public void setNsPlyMonId(String nsPlyMonId) {
this.nsPlyMonId = nsPlyMonId;
}
public String getNsPlyMonPackPerMin() {
return nsPlyMonPackPerMin;
}
public void setNsPlyMonPackPerMin(String nsPlyMonPackPerMin) {
this.nsPlyMonPackPerMin = nsPlyMonPackPerMin;
}
public String getsPlyMonBytePerMin() {
return sPlyMonBytePerMin;
}
public void setsPlyMonBytePerMin(String sPlyMonBytePerMin) {
this.sPlyMonBytePerMin = sPlyMonBytePerMin;
}
public String getNsPlyMonSessionPerMin() {
return nsPlyMonSessionPerMin;
}
public void setNsPlyMonSessionPerMin(String nsPlyMonSessionPerMin) {
this.nsPlyMonSessionPerMin = nsPlyMonSessionPerMin;
}
public String getNsPlyMonTotalSession() {
return nsPlyMonTotalSession;
}
public void setNsPlyMonTotalSession(String nsPlyMonTotalSession) {
this.nsPlyMonTotalSession = nsPlyMonTotalSession;
}
}