From a99abdf5317f4f0f7435af71278701b3b43282a2 Mon Sep 17 00:00:00 2001 From: vasraz Date: Mon, 4 Jul 2022 15:47:48 +0100 Subject: Fix 'Fail to declare Input for duplicated name of property' Signed-off-by: Vasyl Razinkov Change-Id: Ib9ef09944b0ae31b1cfd0dc42d9e7026b5a6ba8f Issue-ID: SDC-4081 --- .../sdc/be/datatypes/elements/PropertyDataDefinition.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'common-be/src') diff --git a/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java b/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java index 6b17c419e4..845eee808a 100644 --- a/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java +++ b/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java @@ -71,10 +71,6 @@ public class PropertyDataDefinition extends ToscaDataDefinition { private String parentPropertyType; private String subPropertyInputPath; private List annotations; - /** - * The resource id which this property belongs to - */ - private String parentUniqueId; private List getInputValues; private Boolean isDeclaredListInput = Boolean.FALSE; private List getPolicyValues; @@ -188,6 +184,9 @@ public class PropertyDataDefinition extends ToscaDataDefinition { return mappedToComponentProperty; } + /** + * The resource id which this property belongs to + */ public String getParentUniqueId() { return getOwnerId(); } -- cgit 1.2.3-korg