diff options
author | Yuli Shlosberg <ys9693@att.com> | 2018-07-02 11:10:17 +0300 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2018-07-02 11:11:02 +0300 |
commit | 82fa3004cc68ef367e4f210900619743eb9abc95 (patch) | |
tree | a8cad8f6b2a544475a6fb685657e2644f7897a38 /common-be/src | |
parent | 2028a72e57daf47d8d1f97d4f8051e860818ba6c (diff) |
first attempt to fix vulnerabilities
Change-Id: Iaf5f7db54511f730e09a8af8921d52ebf7f6c078
Issue-ID: SDC-1457
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'common-be/src')
-rw-r--r-- | common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyRule.java | 6 |
1 files changed, 3 insertions, 3 deletions
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<String> rule; String value; |