Initial Match Action Module implementation

This patch set implements the Match Action framework that
Brian and I have been working on.  Still a work in progress,
not all implementations complete, and not all javadocs and
tests in place.

Unit tests are currently not working, so they are commented out.

Change-Id: I61d79555c6bbb2d5437b2433613ab47ab8cea4f6
diff --git a/src/main/java/net/onrc/onos/core/matchaction/MatchActionOperationsState.java b/src/main/java/net/onrc/onos/core/matchaction/MatchActionOperationsState.java
index 4239027..4ccf668 100644
--- a/src/main/java/net/onrc/onos/core/matchaction/MatchActionOperationsState.java
+++ b/src/main/java/net/onrc/onos/core/matchaction/MatchActionOperationsState.java
@@ -1,5 +1,11 @@
 package net.onrc.onos.core.matchaction;
 
-public interface MatchActionOperationsState {
-    // TODO waiting on MatchActionOperations
+
+public enum MatchActionOperationsState {
+    INIT,
+    RESOLVED,
+    PENDING,
+    INSTALLED,
+    FAILED
 }
+