X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Ftapi%2Ftopology%2FTopologyUtils.java;h=8e8d042ab607ad61f30e6af76d8d32fd15fc897d;hb=db87ba733190c2e59997e00e0fe9199c9c74234d;hp=b8745ebe71636a1c93b75bf60727c68701361670;hpb=942384f299eecdf5163014ff7930b12ce26a2ca3;p=transportpce.git diff --git a/tapi/src/main/java/org/opendaylight/transportpce/tapi/topology/TopologyUtils.java b/tapi/src/main/java/org/opendaylight/transportpce/tapi/topology/TopologyUtils.java index b8745ebe7..8e8d042ab 100644 --- a/tapi/src/main/java/org/opendaylight/transportpce/tapi/topology/TopologyUtils.java +++ b/tapi/src/main/java/org/opendaylight/transportpce/tapi/topology/TopologyUtils.java @@ -128,8 +128,9 @@ public final class TopologyUtils { } List nameList = new ArrayList<>(); for (Map.Entry entry : topology.getName().entrySet()) { - nameList.add(entry.getValue().getValueName()); + nameList.add(entry.getValue().getValue()); } + LOG.debug("Topology nameList {} = ", nameList.toString()); return nameList; }