Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / action / OFPGroupType.java
diff --git a/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/action/OFPGroupType.java b/third-party/openflow-codec/src/main/java/org/openflow/codec/protocol/action/OFPGroupType.java
deleted file mode 100644 (file)
index 5c2c5f7..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- *
- */
-package org.openflow.codec.protocol.action;
-
-import java.io.Serializable;
-
-/**
- * List of OpenFlow Group types and mappings to wire protocol value and derived
- * classes
- *
- * @author Yugandhar Sarraju (ysarraju@in.ibm.com)
- */
-public enum OFPGroupType implements Serializable {
-
-    OFPGT_ALL((short) 0), /* All (multicast/broadcast) group. */
-    OFPGT_SELECT((short) 1), /* Select group. */
-    OFPGT_INDIRECT((short) 2), /* Indirect group. */
-    OFPGT_FF((short) 3); /* Fast failover group. */
-
-    protected short value;
-
-    private OFPGroupType(short value) {
-        this.value = value;
-    }
-
-    /**
-     * @return the value
-     */
-    public short getValue() {
-        return value;
-    }
-
-}