diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-09-11 16:10:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-11 16:10:03 +0000 |
commit | 7614ce4634486cea3898ff9328626f69196687cc (patch) | |
tree | 1ec221f65d65d238ef5b0f04ab9b378a2a8aad47 /PolicyEngineAPI | |
parent | 08f30ef9c85266a769530a8f5179cb01a68a7612 (diff) | |
parent | e957a1d9a9fa6bd0f9f8348d1e864c09cfe2cb92 (diff) |
Merge "New min/max Guard Policy"
Diffstat (limited to 'PolicyEngineAPI')
-rw-r--r-- | PolicyEngineAPI/src/main/java/org/onap/policy/api/RuleProvider.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/PolicyEngineAPI/src/main/java/org/onap/policy/api/RuleProvider.java b/PolicyEngineAPI/src/main/java/org/onap/policy/api/RuleProvider.java index 24d0bcd2c..7f470a2e1 100644 --- a/PolicyEngineAPI/src/main/java/org/onap/policy/api/RuleProvider.java +++ b/PolicyEngineAPI/src/main/java/org/onap/policy/api/RuleProvider.java @@ -42,15 +42,19 @@ public enum RuleProvider { */ GUARD_YAML("GUARD_YAML"), /** - * Indicates Guard BLACKLIST YAML + * Indicates Guard MIN / MAX will be providing the Rule information. + */ + GUARD_MIN_MAX("GUARD_MIN_MAX"), + /** + * Indicates Guard BLACKLIST YAML. */ GUARD_BL_YAML("GUARD_BL_YAML"), /** - * Indicates Guard BLACKLIST YAML + * Indicates Rainy Day Decision Policy. */ RAINY_DAY("Rainy_Day"), /** - * Indicates Raw + * Indicates Raw. */ RAW("Raw"); |