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