Ray Milkey
Committed by Brian O'Connor

ONOS-989 - Add key to toString() methods of intents

Change-Id: Ic82b25e26ab7fb767f3ca571ef7594679c501ba5
......@@ -144,6 +144,7 @@ public final class HostToHostIntent extends ConnectivityIntent {
public String toString() {
return MoreObjects.toStringHelper(getClass())
.add("id", id())
.add("key", key())
.add("appId", appId())
.add("resources", resources())
.add("selector", selector())
......
......@@ -142,6 +142,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent {
public String toString() {
return MoreObjects.toStringHelper(getClass())
.add("id", id())
.add("key", key())
.add("appId", appId())
.add("resources", resources())
.add("selector", selector())
......
......@@ -149,6 +149,7 @@ public final class MultiPointToSinglePointIntent extends ConnectivityIntent {
public String toString() {
return MoreObjects.toStringHelper(getClass())
.add("id", id())
.add("key", key())
.add("appId", appId())
.add("resources", resources())
.add("selector", selector())
......
......@@ -148,6 +148,7 @@ public class PointToPointIntent extends ConnectivityIntent {
public String toString() {
return MoreObjects.toStringHelper(getClass())
.add("id", id())
.add("key", key())
.add("appId", appId())
.add("resources", resources())
.add("selector", selector())
......
......@@ -120,6 +120,7 @@ public class SinglePointToMultiPointIntent extends ConnectivityIntent {
public String toString() {
return MoreObjects.toStringHelper(getClass())
.add("id", id())
.add("key", key())
.add("appId", appId())
.add("resources", resources())
.add("selector", selector())
......