Fix checkstyle warnings in netconf-cli
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / OFFeaturesRequest.java
1 package org.openflow.protocol;
2
3 import org.openflow.util.U16;
4
5
6 /**
7  * Represents a features request message
8  * @author David Erickson (daviderickson@cs.stanford.edu)
9  *
10  */
11 public class OFFeaturesRequest extends OFMessage {
12     public static int MINIMUM_LENGTH = 8;
13
14     public OFFeaturesRequest() {
15         super();
16         this.type = OFType.FEATURES_REQUEST;
17         this.length = U16.t(MINIMUM_LENGTH);
18     }
19 }