Expand allowed chars in property names to include colon 25/124325/3
authorvasraz <vasyl.razinkov@est.tech>
Thu, 16 Sep 2021 11:59:20 +0000 (12:59 +0100)
committerMichael Morris <michael.morris@est.tech>
Fri, 1 Oct 2021 08:47:01 +0000 (08:47 +0000)
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ie49630306b44f0a38b35ddee46144295651282f4
Issue-ID: SDC-3729

catalog-be/src/main/java/org/openecomp/sdc/be/servlets/BeGenericServlet.java

index 1eb4d28..757b66a 100644 (file)
@@ -84,7 +84,7 @@ import org.springframework.web.context.WebApplicationContext;
 public class BeGenericServlet extends BasicServlet {
 
     private static final Logger log = Logger.getLogger(BeGenericServlet.class);
-    private static final String PROPERTY_NAME_REGEX = "[\\w,\\d,_]+";
+    private static final String PROPERTY_NAME_REGEX = "[\\w,\\d,_:]+";
     @Context
     protected HttpServletRequest servletRequest;
     protected ComponentsUtils componentsUtils;