Migration to TAPI 2.4 Step3
[transportpce.git] / tapi / src / main / java / org / opendaylight / transportpce / tapi / topology / TopologyUtils.java
index b8745ebe71636a1c93b75bf60727c68701361670..8e8d042ab607ad61f30e6af76d8d32fd15fc897d 100644 (file)
@@ -128,8 +128,9 @@ public final class TopologyUtils {
         }
         List<String> nameList = new ArrayList<>();
         for (Map.Entry<NameKey, Name> entry : topology.getName().entrySet()) {
-            nameList.add(entry.getValue().getValueName());
+            nameList.add(entry.getValue().getValue());
         }
+        LOG.debug("Topology nameList {} = ", nameList.toString());
         return nameList;
     }