VOL-736: Initial Commit. Not Completed yet.

We will use Existing architecture of Flow Decomposer passing down to both OLT Adapter and ONU Adapter.  The Technology Profile Flow Table ID (range 64-255) and Meter Programming OpenFlow Messages MUST be passed unmodified down to the OLT and ONU Adapters.

Change-Id: Ib4d21d1cc011ac4ceab536946cb727859cb2b525
diff --git a/cli/utils.py b/cli/utils.py
index 7426f99..544c764 100644
--- a/cli/utils.py
+++ b/cli/utils.py
@@ -139,7 +139,7 @@
 
         for instruction in flow['instructions']:
             itype = instruction['type']
-            if itype == 4:
+            if itype == 4 or itype == 3:
                 for action in instruction['actions']['actions']:
                     atype = action['type'][len('OFPAT_'):]
                     table.add_cell(i, *action_printers[atype](action))