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