8c992054bb69ac5279fb594f5cabb18684c03126
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / OFPBarrierReply.java
1 package org.openflow.codec.protocol;
2
3 import org.openflow.codec.util.U16;
4
5 /**
6  * Represents an OFPT_BARRIER_REPLY message
7  *
8  * @author David Erickson (daviderickson@cs.stanford.edu)
9  */
10 public class OFPBarrierReply extends OFPMessage {
11     public OFPBarrierReply() {
12         super();
13         this.type = OFPType.BARRIER_REPLY;
14         this.length = U16.t(OFPMessage.MINIMUM_LENGTH);
15     }
16 }