From 51f905f307dde5e1c5135515796c614250e9de4d Mon Sep 17 00:00:00 2001 From: Abhai Singh Date: Wed, 30 Aug 2017 13:12:53 +0530 Subject: [PATCH] Truncate Service_Description field Updated ArtifactStorageService to truncate if length exceeds 255 Change-Id: If456802c3370553d9ed3a8942ff16b407f896ed2 Issue-ID:APPC-184 Signed-off-by: Abhai Singh --- .../appc/sdc/artifacts/helper/ArtifactStorageService.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/appc-asdc-listener/appc-asdc-listener-bundle/src/main/java/org/openecomp/appc/sdc/artifacts/helper/ArtifactStorageService.java b/appc-asdc-listener/appc-asdc-listener-bundle/src/main/java/org/openecomp/appc/sdc/artifacts/helper/ArtifactStorageService.java index ed5e16525..160ed03d0 100644 --- a/appc-asdc-listener/appc-asdc-listener-bundle/src/main/java/org/openecomp/appc/sdc/artifacts/helper/ArtifactStorageService.java +++ b/appc-asdc-listener/appc-asdc-listener-bundle/src/main/java/org/openecomp/appc/sdc/artifacts/helper/ArtifactStorageService.java @@ -24,6 +24,7 @@ package org.openecomp.appc.sdc.artifacts.helper; +import org.apache.commons.lang.StringUtils; import org.openecomp.appc.exceptions.APPCException; import com.att.eelf.configuration.EELFLogger; import com.att.eelf.configuration.EELFManager; @@ -221,7 +222,7 @@ public class ArtifactStorageService { arguments.add(artifact.getServiceUUID()); arguments.add(artifact.getDistributionId()); arguments.add(artifact.getServiceName()); - arguments.add(artifact.getServiceDescription()); + arguments.add(truncateServiceDescription(artifact.getServiceDescription())); arguments.add(artifact.getResourceUUID()); arguments.add(artifact.getResourceInstanceName()); arguments.add(artifact.getResourceName()); @@ -237,6 +238,14 @@ public class ArtifactStorageService { return arguments; } + private String truncateServiceDescription(String serviceDescription){ + if (!StringUtils.isBlank(serviceDescription) && serviceDescription.length()>255){ + logger.info("Truncating the SERVICE_DESCRIPTION to 255 characters"); + serviceDescription=serviceDescription.substring(0,255); + } + return serviceDescription; + } + /** * Reads the SDC artifact from APP-C database * @param resourceName - resource Name from ASDC Artifact -- 2.16.6