From 82fa3004cc68ef367e4f210900619743eb9abc95 Mon Sep 17 00:00:00 2001 From: Yuli Shlosberg Date: Mon, 2 Jul 2018 11:10:17 +0300 Subject: first attempt to fix vulnerabilities Change-Id: Iaf5f7db54511f730e09a8af8921d52ebf7f6c078 Issue-ID: SDC-1457 Signed-off-by: Yuli Shlosberg --- .../java/org/openecomp/sdc/be/datatypes/elements/PropertyRule.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'common-be') diff --git a/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyRule.java b/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyRule.java index a23ecfee05..d9f913e58b 100644 --- a/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyRule.java +++ b/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyRule.java @@ -33,9 +33,9 @@ public class PropertyRule extends ToscaDataDefinition implements Serializable { */ private static final long serialVersionUID = -3357933382124599996L; - public static String FORCE_ALL = "FORCE_ALL"; - public static String ALL = "ALL"; - public static String RULE_ANY_MATCH = ".+"; + public final static String FORCE_ALL = "FORCE_ALL"; + public final static String ALL = "ALL"; + public final static String RULE_ANY_MATCH = ".+"; List rule; String value; -- cgit 1.2.3-korg