aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--appc-asdc-listener/appc-asdc-listener-bundle/src/main/java/org/openecomp/appc/sdc/artifacts/helper/ArtifactStorageService.java11
1 files changed, 10 insertions, 1 deletions
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