Update MRI projects for Aluminium
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / api / NetconfDeviceSchemasResolver.java
index 6404842994fbf434d9aa2818b3d8c07a994e9e6d..297e5183a001f819f952ffeaa749e25d5a550231 100644 (file)
@@ -11,7 +11,7 @@ package org.opendaylight.netconf.sal.connect.api;
 import org.opendaylight.netconf.sal.connect.netconf.listener.NetconfSessionPreferences;
 import org.opendaylight.netconf.sal.connect.netconf.sal.NetconfDeviceRpc;
 import org.opendaylight.netconf.sal.connect.util.RemoteDeviceId;
-import org.opendaylight.yangtools.yang.model.api.SchemaContext;
+import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
 
 /**
  * Factory for netconf device schemas.
@@ -19,5 +19,5 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 public interface NetconfDeviceSchemasResolver {
     NetconfDeviceSchemas resolve(
             NetconfDeviceRpc deviceRpc, NetconfSessionPreferences remoteSessionCapabilities, RemoteDeviceId id,
-            SchemaContext schemaContext);
+            EffectiveModelContext schemaContext);
 }