IpAddrEntry.java 999 Bytes
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;
	}
}