Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / OFGetConfigRequest.java
1 package org.openflow.protocol;
2
3 import org.openflow.util.U16;
4
5 /**
6  * Represents an OFPT_GET_CONFIG_REQUEST type message
7  * @author David Erickson (daviderickson@cs.stanford.edu)
8  */
9 public class OFGetConfigRequest extends OFMessage {
10     public OFGetConfigRequest() {
11         super();
12         this.type = OFType.GET_CONFIG_REQUEST;
13         this.length = U16.t(OFMessage.MINIMUM_LENGTH);
14     }
15 }