Skip to content
Snippets Groups Projects
Commit 38e3017b authored by abat's avatar abat
Browse files

Merge into master from pull request #259:

parents 3b4cf520 eba8656d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
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