From 4508aef64655154553aa01f5f6f5cc51317f7266 Mon Sep 17 00:00:00 2001 From: JvD_Ericsson Date: Tue, 28 Jun 2022 08:50:53 +0100 Subject: Support tosca functions for group instances in composition view Issue-ID: SDC-4078 Signed-off-by: JvD_Ericsson Change-Id: Id65ae1c0cac8cb61cece69e2c88a588027c675fd --- .../sdc/be/components/impl/GroupBusinessLogicNew.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'catalog-be') diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/GroupBusinessLogicNew.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/GroupBusinessLogicNew.java index 4a1e787588..7c01a35a32 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/GroupBusinessLogicNew.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/GroupBusinessLogicNew.java @@ -19,6 +19,7 @@ * Modifications copyright (c) 2019 Nokia * ================================================================================ */ + package org.openecomp.sdc.be.components.impl; import static org.openecomp.sdc.be.components.impl.BaseBusinessLogic.enumHasValueFilter; @@ -139,6 +140,9 @@ public class GroupBusinessLogicNew { if (!isOnlyGroupPropertyValueChanged(gp, originalProperties.get(updatedPropertyName))) { throw new ByActionStatusComponentException(ActionStatus.INVALID_PROPERTY, updatedPropertyName); } + if (gp.hasGetFunction()) { + gp.setValue(gp.getToscaGetFunction().generatePropertyValue()); + } if (StringUtils.isEmpty(gp.getValue())) { gp.setValue(originalProperties.get(updatedPropertyName).getDefaultValue()); } @@ -225,7 +229,7 @@ public class GroupBusinessLogicNew { } else { value = parentValues.get(propertyKey); } - return Integer.valueOf(value); + return Integer.parseInt(value); } private boolean isOnlyGroupPropertyValueChanged(GroupProperty groupProperty1, GroupProperty groupProperty2) { @@ -233,10 +237,14 @@ public class GroupBusinessLogicNew { groupProperty1Duplicate.setValue(null); groupProperty1Duplicate.setSchema(null); groupProperty1Duplicate.setParentUniqueId(null); + groupProperty1Duplicate.setToscaGetFunction(null); + groupProperty1Duplicate.setToscaGetFunctionType(null); GroupProperty groupProperty2Duplicate = new GroupProperty(groupProperty2); groupProperty2Duplicate.setValue(null); groupProperty2Duplicate.setSchema(null); groupProperty2Duplicate.setParentUniqueId(null); + groupProperty2Duplicate.setToscaGetFunction(null); + groupProperty2Duplicate.setToscaGetFunctionType(null); return StringUtils.equals(groupProperty1Duplicate.getValueUniqueUid(), groupProperty2Duplicate.getValueUniqueUid()) && groupProperty1Duplicate .equals(groupProperty2Duplicate); } -- cgit 1.2.3-korg