X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=third-party%2Fopenflow-codec%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fcodec%2Fprotocol%2Fstatistics%2FOFPStatistics.java;fp=third-party%2Fopenflow-codec%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fcodec%2Fprotocol%2Fstatistics%2FOFPStatistics.java;h=0000000000000000000000000000000000000000;hb=64fe0fbca1a6c2b77ad25f568d73a7eb64236d16;hp=7d9c6ee8f054210edd2131a9978d61cc3f0bff45;hpb=8b9a3ff2bbc83941254b46b818cbbae5cc1a3a5b;p=openflowjava.git 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 index 7d9c6ee8..00000000 --- a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/statistics/OFPStatistics.java +++ /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); -}