Fixed code to comply with uuid property rename to id

This commit is contained in:
Luca Frosini 2023-04-28 11:47:12 +02:00
parent ce8dc93604
commit 261057df42
2 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ public class EServiceManager {
UUID uuid = UUID.fromString(id);
EService eService = new EServiceImpl();
eService.setUUID(uuid);
eService.setID(uuid);
SoftwareFacet softwareFacet = new SoftwareFacetImpl();
softwareFacet.setDescription(applicationConfiguration.description());

View File

@ -288,7 +288,7 @@ public class HostingNodeManager {
UUID uuid = UUID.fromString(id);
HostingNode hostingNode = new HostingNodeImpl();
hostingNode.setUUID(uuid);
hostingNode.setID(uuid);
NetworkingFacet networkingFacet = new NetworkingFacetImpl();
try {