Eliminate SchemaResourcesDTO
[netconf.git] / plugins / netconf-client-mdsal / src / main / java / org / opendaylight / netconf / client / mdsal / api / NetconfDeviceSchemasResolver.java
index 4142a666e928d011bc2e7ae7f6f083885e7001b1..e72dbb5a88cbb70ea28b55fb9f9d85c03ecd2f21 100644 (file)
@@ -8,7 +8,6 @@
 package org.opendaylight.netconf.client.mdsal.api;
 
 import com.google.common.util.concurrent.ListenableFuture;
-import org.opendaylight.netconf.client.mdsal.spi.NetconfDeviceRpc;
 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
 
 /**
@@ -16,6 +15,6 @@ import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
  */
 public interface NetconfDeviceSchemasResolver {
     // FIXME: document this method
-    ListenableFuture<? extends NetconfDeviceSchemas> resolve(NetconfDeviceRpc deviceRpc,
+    ListenableFuture<? extends NetconfDeviceSchemas> resolve(NetconfRpcService deviceRpc,
         NetconfSessionPreferences remoteSessionCapabilities, RemoteDeviceId id, EffectiveModelContext schemaContext);
 }