Added openflow-codec and openflowj_netty from openflowplugin
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / OFPGetConfigRequest.java
diff --git a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/OFPGetConfigRequest.java b/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/OFPGetConfigRequest.java
new file mode 100644 (file)
index 0000000..d35904d
--- /dev/null
@@ -0,0 +1,16 @@
+package org.openflow.codec.protocol;
+
+import org.openflow.codec.util.U16;
+
+/**
+ * Represents an OFPT_GET_CONFIG_REQUEST type message
+ *
+ * @author David Erickson (daviderickson@cs.stanford.edu)
+ */
+public class OFPGetConfigRequest extends OFPMessage {
+    public OFPGetConfigRequest() {
+        super();
+        this.type = OFPType.GET_CONFIG_REQUEST;
+        this.length = U16.t(OFPMessage.MINIMUM_LENGTH);
+    }
+}