diff options
author | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2021-03-02 16:37:43 +0000 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-03-17 22:51:57 +0000 |
commit | a54b7c89ae8441e749cc08489672c50cfbe5786f (patch) | |
tree | df10dcb8bb2bce791b667c826197feef3a62225e /common-be/src | |
parent | 737340d942fcfd431f21b5463bcde57b95e4d69c (diff) |
Fix Substitution Mapping for inputs created independently
Issue-ID: SDC-3515
Signed-off-by: KrupaNagabhushan <krupa.nagabhushan@est.tech>
Change-Id: I90e489ac7f7a244d1338d0d6f6c3c2413a131fcc
Diffstat (limited to 'common-be/src')
-rw-r--r-- | common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java | 4 |
1 files changed, 4 insertions, 0 deletions
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 3f68a3cc76..3a0d08c2c8 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 @@ -53,6 +53,7 @@ public class PropertyDataDefinition extends ToscaDataDefinition { private String value; private String label; private Boolean immutable = Boolean.FALSE; + private Boolean mappedToComponentProperty = Boolean.TRUE; private String inputPath; private String status; @@ -102,6 +103,7 @@ public class PropertyDataDefinition extends ToscaDataDefinition { this.setHidden(propertyDataDefinition.isHidden()); this.setLabel(propertyDataDefinition.getLabel()); this.setImmutable(propertyDataDefinition.isImmutable()); + this.setMappedToComponentProperty(propertyDataDefinition.isMappedToComponentProperty()); this.setParentUniqueId(propertyDataDefinition.getParentUniqueId()); this.setOwnerId(propertyDataDefinition.getOwnerId()); this.setGetInputValues(propertyDataDefinition.getGetInputValues()); @@ -167,6 +169,8 @@ public class PropertyDataDefinition extends ToscaDataDefinition { return immutable; } + public Boolean isMappedToComponentProperty() { return mappedToComponentProperty; } + public String getParentUniqueId() { return getOwnerId(); } |