IpAddrEntry.java
999 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
package com.sitech.ismp.coll.centercoll.windows;
public class IpAddrEntry {
public String RowIndex;
public String ipAddr;
public String ifIndex;
public String netMask;
public String bcastAddr;
public String reasmMaxSize;
public String getRowIndex() {
return RowIndex;
}
public void setRowIndex(String rowIndex) {
RowIndex = rowIndex;
}
public String getIpAddr() {
return ipAddr;
}
public void setIpAddr(String ipAddr) {
this.ipAddr = ipAddr;
}
public String getIfIndex() {
return ifIndex;
}
public void setIfIndex(String ifIndex) {
this.ifIndex = ifIndex;
}
public String getNetMask() {
return netMask;
}
public void setNetMask(String netMask) {
this.netMask = netMask;
}
public String getBcastAddr() {
return bcastAddr;
}
public void setBcastAddr(String bcastAddr) {
this.bcastAddr = bcastAddr;
}
public String getReasmMaxSize() {
return reasmMaxSize;
}
public void setReasmMaxSize(String reasmMaxSize) {
this.reasmMaxSize = reasmMaxSize;
}
}