Added openflow-codec and openflowj_netty from openflowplugin
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / statistics / OFPExtStatistics.java
diff --git a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/statistics/OFPExtStatistics.java b/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/statistics/OFPExtStatistics.java
new file mode 100644 (file)
index 0000000..7241cbf
--- /dev/null
@@ -0,0 +1,19 @@
+package org.openflow.codec.protocol.statistics;
+
+/**
+ * OFPStatistics interface is extended to have operation to set the length.
+ *
+ * @see org.openflow.codec.protocol.statistics.OFPExperimenterMultipartHeader
+ *
+ * @author AnilGujele
+ */
+public interface OFPExtStatistics extends OFPStatistics {
+    /**
+     * set the length of Multipart in bytes
+     *
+     * @param length
+     *            - the length
+     */
+    public void setLength(int length);
+
+}