Merge "Bug 2347: DOMConcurrentDataCommitCoordinator uses wrong phase name"
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / OFStatisticsRequest.java
1 package org.openflow.protocol;
2
3 import org.openflow.util.U16;
4
5 /**
6  * Represents an ofp_stats_request message
7  * @author David Erickson (daviderickson@cs.stanford.edu)
8  */
9 public class OFStatisticsRequest extends OFStatisticsMessageBase {
10     public OFStatisticsRequest() {
11         super();
12         this.type = OFType.STATS_REQUEST;
13         this.length = U16.t(OFStatisticsMessageBase.MINIMUM_LENGTH);
14     }
15 }