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