Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / OFGetConfigReply.java
1 package org.openflow.protocol;
2
3 /**
4  * Represents an OFPT_GET_CONFIG_REPLY type message
5  * @author David Erickson (daviderickson@cs.stanford.edu)
6  */
7 public class OFGetConfigReply extends OFSwitchConfig {
8     public OFGetConfigReply() {
9         super();
10         this.type = OFType.GET_CONFIG_REPLY;
11     }
12 }