Skip to content
Snippets Groups Projects
Commit 10e7ece5 authored by Vishnu Emmadi's avatar Vishnu Emmadi
Browse files

Json Serialization fixes for LinkInfo

add default constructor for LinkInfo
add JsonIgnore annotation for getLinkType as it does not correspond to an actual class variable
parent dbb8263a
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,8 @@ import net.floodlightcontroller.linkdiscovery.ILinkDiscovery.LinkType;
import org.openflow.protocol.OFPhysicalPort.OFPortState;
import com.fasterxml.jackson.annotation.JsonIgnore;
public class LinkInfo {
public LinkInfo(Long firstSeenTime,
......@@ -34,6 +36,14 @@ public class LinkInfo {
this.lastBddpReceivedTime = lastBddpReceivedTime;
}
public LinkInfo() {
this.srcPortState = null;
this.dstPortState = null;
this.firstSeenTime = null;
this.lastLldpReceivedTime = null;
this.lastBddpReceivedTime = null;
}
protected Integer srcPortState;
protected Integer dstPortState;
protected Long firstSeenTime;
......@@ -97,6 +107,7 @@ public class LinkInfo {
this.dstPortState = dstPortState;
}
@JsonIgnore
public LinkType getLinkType() {
if (lastLldpReceivedTime != null) {
return LinkType.DIRECT_LINK;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment