Bug 5540 - Remove ConvertorManager singleton
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / action / cases / OfToSalSetNwDstCase.java
index b87f578dbcd87db984639e01638fa96b86385545..2f7d1710baf795206154a2fd9b311cc8edc0b003 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;
@@ -24,7 +25,7 @@ public class OfToSalSetNwDstCase extends ConvertorCase<SetNwDstCase, Action, Act
     }
 
     @Override
-    public Optional<Action> process(@Nonnull final SetNwDstCase source, final ActionResponseConvertorData data) {
+    public Optional<Action> process(@Nonnull final SetNwDstCase source, final ActionResponseConvertorData data, ConvertorExecutor convertorExecutor) {
         SetNwDstActionBuilder setNwDstActionBuilder = new SetNwDstActionBuilder();
         return Optional.of(new SetNwDstActionCaseBuilder().setSetNwDstAction(setNwDstActionBuilder.build()).build());
     }