From ce4031d2189cba291ca4fd8bd7cdb130df6042b3 Mon Sep 17 00:00:00 2001 From: sebdet Date: Thu, 5 Nov 2020 12:02:07 +0100 Subject: Modify the get service Abstract status interface and add the tonode judgment Fix code Issue-ID: SDC-3346 Signed-off-by: sebdet Change-Id: I5e8fb25e2c855639f3389dc3b54b9dc8ceea3037 --- .../sdc/be/components/impl/AbstractTemplateBusinessLogic.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'catalog-be/src') diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/AbstractTemplateBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/AbstractTemplateBusinessLogic.java index 9061f8e2b9..9206dcb52e 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/AbstractTemplateBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/AbstractTemplateBusinessLogic.java @@ -124,16 +124,15 @@ public class AbstractTemplateBusinessLogic extends BaseBusinessLogic { String serviceUniqueId,List abstractResourceInfoList) { boolean isAbstract = getIsAbstract(resource.getCategories()); log.debug("before if isAbstract,get resource:{}", resource); - if (!isAbstract) { - log.debug("getResourceAbstractStatus:resource {} ,with id {} isAbstract{} is missing the isAbstract parameter", - resource.getName(), resource.getUUID(),false); - } if (isAbstract) { log.debug("getResourceAbstractStatus: resource {} with id {} ,NormalizedName:{},isAbstract{} is abstract resource", resource.getName(), resource.getUUID(), resource.getNormalizedName(), true); isContainAbstractResource = true; AbstractResourceInfo abstractResourceInfo = getAbstractResourceInfo(resource, componentInstancesRelations, serviceUniqueId); abstractResourceInfoList.add(abstractResourceInfo); + } else { + log.debug("getResourceAbstractStatus:resource {} ,with id {} isAbstract{} is missing the isAbstract parameter", + resource.getName(), resource.getUUID(),false); } return isContainAbstractResource; } -- cgit 1.2.3-korg