Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / statistics / OFPStatistics.java
diff --git a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/statistics/OFPStatistics.java b/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/statistics/OFPStatistics.java
deleted file mode 100644 (file)
index 7d9c6ee..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-package org.openflow.codec.protocol.statistics;
-
-import org.openflow.codec.io.IDataBuffer;
-
-/**
- * The base class for all OpenFlow statistics.
- *
- * @author David Erickson (daviderickson@cs.stanford.edu) - Mar 11, 2010
- */
-public interface OFPStatistics {
-    /**
-     * Returns the wire length of this message in bytes
-     *
-     * @return the length
-     */
-    public int getLength();
-
-    /**
-     * Read this message off the wire from the specified DataBuffer
-     *
-     * @param data
-     */
-    public void readFrom(IDataBuffer data);
-
-    /**
-     * Write this message's binary format to the specified DataBuffer
-     *
-     * @param data
-     */
-    public void writeTo(IDataBuffer data);
-}