Madan Jampani

added a default empty contructor to keep the json serializer happy

Change-Id: I81ca0d8388baa9f53ea2eee3432ab6a83fb8a11f
......@@ -35,6 +35,15 @@ public final class NodeInfo {
this.tcpPort = port;
}
/*
* Needed for serialization.
*/
private NodeInfo() {
id = null;
ip = null;
tcpPort = 0;
}
/**
* Creates a new instance.
* @param id node id
......