7348afd6262cd55c5905f6047d8d53785f0a9226
[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 }