IpAddrTableRow.java
992 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.sitech.ismp.coll.net.table;
public class IpAddrTableRow {
private String RowIndex;
private String IfIndex;
private String IpAddr;
private String NetMask;
private String BcastAddr;
private String ReasmMaxSize;
public String getBcastAddr() {
return BcastAddr;
}
public void setBcastAddr(String bcastAddr) {
BcastAddr = bcastAddr;
}
public String getIfIndex() {
return IfIndex;
}
public void setIfIndex(String ifIndex) {
IfIndex = ifIndex;
}
public String getIpAddr() {
return IpAddr;
}
public void setIpAddr(String ipAddr) {
IpAddr = ipAddr;
}
public String getNetMask() {
return NetMask;
}
public void setNetMask(String netMask) {
NetMask = netMask;
}
public String getReasmMaxSize() {
return ReasmMaxSize;
}
public void setReasmMaxSize(String reasmMaxSize) {
ReasmMaxSize = reasmMaxSize;
}
public String getRowIndex() {
return RowIndex;
}
public void setRowIndex(String rowIndex) {
RowIndex = rowIndex;
}
}