import org.opendaylight.netconf.api.NetconfSession 将上面 impot 的maven坐标给我
时间: 2023-12-18 10:05:59 浏览: 105
netconf.js:Node.js的NETCONF实现
`org.opendaylight.netconf:netconf-api:1.1.6` 是包含 `org.opendaylight.netconf.api.NetconfSession` 类的 Maven 依赖。您可以在您的 Maven 项目的 `pom.xml` 文件中添加以下依赖来使用它:
```xml
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>netconf-api</artifactId>
<version>1.1.6</version>
</dependency>
```
请注意,这个坐标可能随着版本的更新而发生变化。如果您使用其他版本或者更改了依赖库,坐标也会相应变化。
阅读全文