blob: 5830cfd431bce05ca50889afff9efe1098752c59 [file] [log] [blame]
package net.onrc.onos.ofcontroller.proxyarp;
public class ArpTableEntry {
private byte[] macAddress;
private long timeLastSeen;
public ArpTableEntry(byte[] macAddress, long timeLastSeen) {
this.macAddress = macAddress;
this.timeLastSeen = timeLastSeen;
}
public byte[] getMacAddress() {
return macAddress;
}
public long getTimeLastSeen() {
return timeLastSeen;
}
public void setTimeLastSeen(long time){
//TODO thread safety issues?
timeLastSeen = time;
}
}