diff options
Diffstat (limited to 'common-be/src/main/java')
-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; |