Remove org.opendaylight.netconf.topology.sb.keypair
[netconf.git] / apps / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / RemoteDeviceConnectorImpl.java
index c7be846b4b0ae2b4b3ec624a1ef51551f1a8382e..35174120ec4c9045095bcb3028b90a99691d981b 100644 (file)
@@ -74,8 +74,6 @@ public class RemoteDeviceConnectorImpl implements RemoteDeviceConnector {
 
     private final NetconfTopologySetup netconfTopologyDeviceSetup;
     private final RemoteDeviceId remoteDeviceId;
-    private final String privateKeyPath;
-    private final String privateKeyPassphrase;
     private final AAAEncryptionService encryptionService;
     private final NetconfKeystoreAdapter keystoreAdapter;
     private final DeviceActionFactory deviceActionFactory;
@@ -89,8 +87,6 @@ public class RemoteDeviceConnectorImpl implements RemoteDeviceConnector {
         this.netconfTopologyDeviceSetup = requireNonNull(netconfTopologyDeviceSetup);
         this.remoteDeviceId = remoteDeviceId;
         this.deviceActionFactory = requireNonNull(deviceActionFactory);
-        privateKeyPath = netconfTopologyDeviceSetup.getPrivateKeyPath();
-        privateKeyPassphrase = netconfTopologyDeviceSetup.getPrivateKeyPassphrase();
         encryptionService = netconfTopologyDeviceSetup.getEncryptionService();
         keystoreAdapter = new NetconfKeystoreAdapter(netconfTopologyDeviceSetup.getDataBroker());
     }