Bug 5540 - Remove ConvertorManager singleton
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / action / cases / OfToSalPushPbbCase.java
index f2cd9b987daaeb92ad0c3d38231962d502d9d30c..2b09fdb6fe0c04732402cf806d1a761f89093f67 100644 (file)
@@ -11,6 +11,7 @@ package org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.action.ca
 import java.util.Optional;
 import javax.annotation.Nonnull;
 import org.opendaylight.openflowplugin.api.OFConstants;
+import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorExecutor;
 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.action.data.ActionResponseConvertorData;
 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.common.ConvertorCase;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
@@ -25,7 +26,7 @@ public class OfToSalPushPbbCase extends ConvertorCase<PushPbbCase, Action, Actio
     }
 
     @Override
-    public Optional<Action> process(@Nonnull final PushPbbCase source, final ActionResponseConvertorData data) {
+    public Optional<Action> process(@Nonnull final PushPbbCase source, final ActionResponseConvertorData data, ConvertorExecutor convertorExecutor) {
         PushPbbAction pushPbbActionFromOf = source.getPushPbbAction();
         PushPbbActionBuilder pushPbbAction = new PushPbbActionBuilder();
         pushPbbAction.setEthernetType(pushPbbActionFromOf.getEthertype().getValue());