diff options
author | franciscovila <javier.paradela.vila@est.tech> | 2022-09-27 15:20:55 +0100 |
---|---|---|
committer | franciscovila <javier.paradela.vila@est.tech> | 2022-09-27 15:27:12 +0100 |
commit | b98438ba7b85ca3e384cf5579daa5be9144f9dc4 (patch) | |
tree | 67acd92d81b5de257610634be5d75606a0fdfe08 /catalog-be/src/main/java | |
parent | 6fa01940a1dec7a323f87f7a141dbef04d8af3d3 (diff) |
Error in update of Component Inputs
Fix error preventing constraints validations
Issue-ID: SDC-4191
Signed-off-by: franciscovila <javier.paradela.vila@est.tech>
Change-Id: I19190a071fe45cf5ac30c7ec44fbf0fbb2b46c03
Diffstat (limited to 'catalog-be/src/main/java')
-rw-r--r-- | catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogic.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogic.java index bca901ee8b..21327ea29d 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogic.java @@ -338,13 +338,13 @@ public class InputsBusinessLogic extends BaseBusinessLogic { List<InputDefinition> inputDefinitions = new ArrayList<>(); for (InputDefinition inputDefinition : inputs) { InputDefinition inputDef = new InputDefinition(); - inputDefinition.setDefaultValue(inputDefinition.getDefaultValue()); - inputDefinition.setInputPath(inputDefinition.getSubPropertyInputPath()); - inputDefinition.setType(inputDefinition.getType()); + inputDef.setDefaultValue(inputDefinition.getDefaultValue()); + inputDef.setInputPath(inputDefinition.getSubPropertyInputPath()); + inputDef.setType(inputDefinition.getType()); if (Objects.nonNull(inputDefinition.getParentPropertyType())) { ComponentInstanceProperty propertyDefinition = new ComponentInstanceProperty(); propertyDefinition.setType(inputDefinition.getParentPropertyType()); - inputDefinition.setProperties(Collections.singletonList(propertyDefinition)); + inputDef.setProperties(Collections.singletonList(propertyDefinition)); } inputDefinitions.add(inputDef); } |