2e1912843b7fbdfe2e7c65b9e54af407cc710b55
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / OFPGetConfigReply.java
1 package org.openflow.codec.protocol;
2
3 /**
4  * Represents an OFPT_GET_CONFIG_REPLY type message
5  *
6  * @author David Erickson (daviderickson@cs.stanford.edu)
7  */
8 public class OFPGetConfigReply extends OFPSwitchConfig {
9     public OFPGetConfigReply() {
10         super();
11         this.type = OFPType.GET_CONFIG_REPLY;
12     }
13 }