Clustered topology module
[netconf.git] / opendaylight / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / netconf / sal / NetconfDeviceSalProvider.java
index 17e18f4f6caa221e24d6a0c9ba10920619db60eb..32a5abd3541deb35fdf8c3d6f0543d09d5168b28 100644 (file)
@@ -27,7 +27,7 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-public final class NetconfDeviceSalProvider implements AutoCloseable, Provider, BindingAwareProvider {
+public class NetconfDeviceSalProvider implements AutoCloseable, Provider, BindingAwareProvider {
 
     private static final Logger logger = LoggerFactory.getLogger(NetconfDeviceSalProvider.class);
 
@@ -101,7 +101,7 @@ public final class NetconfDeviceSalProvider implements AutoCloseable, Provider,
 
         private ObjectRegistration<DOMMountPoint> topologyRegistration;
 
-        MountInstance(final DOMMountPointService mountService, final RemoteDeviceId id) {
+        public MountInstance(final DOMMountPointService mountService, final RemoteDeviceId id) {
             this.mountService = Preconditions.checkNotNull(mountService);
             this.id = Preconditions.checkNotNull(id);
         }