Update MRI upstreams for Phosphorus
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / multipart / tablefeatures / ApplyActionsTablePropertySerializer.java
index 796fee6b91bf3532dd47614ba980f827e98f58b9..1d2abbf88f6958652ca508c3ab6e1b52f220f3e2 100644 (file)
@@ -27,14 +27,15 @@ public class ApplyActionsTablePropertySerializer extends AbstractTablePropertySe
     protected void serializeProperty(final ApplyActions property, final ByteBuf byteBuf) {
         property
                 .getApplyActions()
-                .getAction()
+                .nonnullAction()
+                .values()
                 .stream()
                 .sorted(OrderComparator.build())
                 .map(Action::getAction)
                 .forEach(action -> ActionUtil
                         .writeActionHeader(
                                 action,
-                                EncodeConstants.OF13_VERSION_ID,
+                                EncodeConstants.OF_VERSION_1_3,
                                 registry,
                                 byteBuf));
     }