我想列出我的ODL清单中的节点。我可以使用以下内容
curl -v -X GET -u admin:admin http://localhost:8181/restconf/operational/opendaylight-inventory:nodes/
我不知道如何从opendaylight Java应用程序(即在Karaf容器中运行的应用程序)执行此操作。我宁愿不使用HttpClient进行获取。有更好的方法吗?
以下问题也适用于以下问题,以获取流,我可以从shell脚本执行此操作,但我想使用Java API进行操作:
curl -v -u admin:admin http://127.0.0.1:8181/restconf/config/opendaylight-inventory:nodes/node/openflow:1
我尝试从应用程序中使用RpcProviderService,但是我不知道什么是Rpc Implementation类。我在openflow插件服务中四处寻找线索,但没有运气。
在此先感谢您的帮助。
范围