Introduce restconf.server.{api,spi,mdsal}
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / transactions / NetconfRestconfStrategy.java
index 9f3c3c963cce7601f68caf46b1d3f00b382d6b87..e141aea600099000c9ee0c17f138e5e059f3d58b 100644 (file)
@@ -9,6 +9,7 @@ package org.opendaylight.restconf.nb.rfc8040.rests.transactions;
 
 import static java.util.Objects.requireNonNull;
 
+import com.google.common.collect.ImmutableMap;
 import com.google.common.util.concurrent.FutureCallback;
 import com.google.common.util.concurrent.Futures;
 import com.google.common.util.concurrent.ListenableFuture;
@@ -38,7 +39,7 @@ public final class NetconfRestconfStrategy extends RestconfStrategy {
 
     public NetconfRestconfStrategy(final EffectiveModelContext modelContext,
             final NetconfDataTreeService netconfService, final @Nullable DOMRpcService rpcService) {
-        super(modelContext, rpcService);
+        super(modelContext, ImmutableMap.of(), rpcService);
         this.netconfService = requireNonNull(netconfService);
     }