diff --git a/src/main/java/org/openflow/protocol/statistics/OFFlowStatisticsReply.java b/src/main/java/org/openflow/protocol/statistics/OFFlowStatisticsReply.java index 803db8a9167fee4918e7d795cb9b42b665191100..bea7f1e3b064a947a95d1398696462ae886cf697 100644 --- a/src/main/java/org/openflow/protocol/statistics/OFFlowStatisticsReply.java +++ b/src/main/java/org/openflow/protocol/statistics/OFFlowStatisticsReply.java @@ -270,6 +270,23 @@ public class OFFlowStatisticsReply implements OFStatistics, OFActionFactoryAware } } + @Override + public String toString() { + String str = "match=" + this.match; + str += " tableId=" + this.tableId; + str += " durationSeconds=" + this.durationSeconds; + str += " durationNanoseconds=" + this.durationNanoseconds; + str += " priority=" + this.priority; + str += " idleTimeout=" + this.idleTimeout; + str += " hardTimeout=" + this.hardTimeout; + str += " cookie=" + this.cookie; + str += " packetCount=" + this.packetCount; + str += " byteCount=" + this.byteCount; + str += " action=" + this.actions; + + return str; + } + @Override public int hashCode() { final int prime = 419;