X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=third-party%2Fopenflow-codec%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fcodec%2Fprotocol%2FOFPGetConfigRequest.java;fp=third-party%2Fopenflow-codec%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fcodec%2Fprotocol%2FOFPGetConfigRequest.java;h=0000000000000000000000000000000000000000;hb=64fe0fbca1a6c2b77ad25f568d73a7eb64236d16;hp=d35904d4af25fee6a864245258556a6f55eb411f;hpb=8b9a3ff2bbc83941254b46b818cbbae5cc1a3a5b;p=openflowjava.git 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 deleted file mode 100644 index d35904d4..00000000 --- a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/OFPGetConfigRequest.java +++ /dev/null @@ -1,16 +0,0 @@ -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); - } -}