diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-04-28 16:01:35 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-04-28 16:01:35 +0200 |
commit | 975dccc51b43b5a4019c45f448e63a110e3bd603 (patch) | |
tree | ff709422661494e215f563e877daf3dca5d2de50 /src/main | |
parent | 5523a23a5d8a66f690fc2dec7975cb8bfb8db975 (diff) |
Fix VNF entityId in policies
Fix the VNF entity IDs value in json schema for each policies (in UI)
Issue-ID: CLAMP-843
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I9515b01422acdfc0ec36f10cc70994145e561d7f
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/clamp/policy/operational/OperationalPolicyRepresentationBuilder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/clamp/policy/operational/OperationalPolicyRepresentationBuilder.java b/src/main/java/org/onap/clamp/policy/operational/OperationalPolicyRepresentationBuilder.java index 5f6cb31b..ee403065 100644 --- a/src/main/java/org/onap/clamp/policy/operational/OperationalPolicyRepresentationBuilder.java +++ b/src/main/java/org/onap/clamp/policy/operational/OperationalPolicyRepresentationBuilder.java @@ -130,7 +130,7 @@ public class OperationalPolicyRepresentationBuilder { properties.add(TYPE, createSchemaProperty("Type", STRING, "VNF", "True", null)); } properties.add("resourceID", createSchemaProperty("Resource ID", STRING, - modelVnfs.get(entry.getKey()).getAsJsonObject().get("name").getAsString(), "True", null)); + modelVnfs.get(entry.getKey()).getAsJsonObject().get("invariantUUID").getAsString(), "True", null)); vnfOneOfSchema.add(PROPERTIES, properties); vnfSchemaArray.add(vnfOneOfSchema); |