Merge "itm and mdsal porting"
[vpnservice.git] / mdsalutil / mdsalutil-api / src / main / java / org / opendaylight / vpnservice / mdsalutil / ActionInfo.java
index 084c5653db84b329f9333ab62c1519529f50c465..704d6c2010aa48d967c80ebaee97add8ab1a6cff 100644 (file)
@@ -32,7 +32,13 @@ public class ActionInfo implements Serializable{
         m_actionType = actionType;
         m_actionKey = 0;
         m_asActionValues = asActionValues;
-    } 
+    }
+
+    public ActionInfo(ActionType actionType, String[] asActionValues, int actionKey) {
+        m_actionType = actionType;
+        m_actionKey = actionKey;
+        m_asActionValues = asActionValues;
+    }
     
     public ActionInfo(ActionType actionType, BigInteger[] aBigIntValues) {
         m_actionType = actionType;
@@ -40,6 +46,12 @@ public class ActionInfo implements Serializable{
         m_aBigIntValues = aBigIntValues;
     }
 
+    public ActionInfo(ActionType actionType, BigInteger[] aBigIntValues, int actionKey) {
+        m_actionType = actionType;
+        m_actionKey = actionKey;
+        m_aBigIntValues = aBigIntValues;
+    }
+
     public void setActionKey(int key) {
         m_actionKey = key;
     }