From: sebdet Date: Thu, 5 Nov 2020 11:02:07 +0000 (+0100) Subject: Modify the get service Abstract status interface and add the tonode judgment X-Git-Tag: 1.8.0~24 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F20%2F114620%2F2;p=sdc.git 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 --- 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; }