use of org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.sfc.rsp.rev140701.rendered.service.paths.RenderedServicePathKey in project netvirt by opendaylight.
the class SfcProvider method getRenderedServicePath.
public Optional<RenderedServicePath> getRenderedServicePath(String rspName) {
RenderedServicePathKey renderedServicePathKey = new RenderedServicePathKey(new RspName(rspName));
InstanceIdentifier<RenderedServicePath> rspIid = InstanceIdentifier.builder(RenderedServicePaths.class).child(RenderedServicePath.class, renderedServicePathKey).build();
return MDSALUtil.read(dataBroker, LogicalDatastoreType.OPERATIONAL, rspIid).toJavaUtil();
}
Aggregations