diff options
author | Michael Mokry <mm117s@att.com> | 2018-09-10 15:23:15 -0500 |
---|---|---|
committer | Michael Mokry <mm117s@att.com> | 2018-09-11 10:31:26 -0500 |
commit | e957a1d9a9fa6bd0f9f8348d1e864c09cfe2cb92 (patch) | |
tree | a09024bc2c7e6a3b69affd95de9352c7d4d5c468 /PolicyEngineAPI | |
parent | 1134bd40da28d3833a0dd4f821e75ec938f6061f (diff) |
New min/max Guard Policy
Made changes to support Guard policy create/update and other policy manager
functions including deletePolicy and pushPolicy.
Includes changes for new Guard policy support using GUI and API (Rest and Java Client)
Made changes to address Jim's comments
Made changes to address Liam's comments
Change-Id: I133fe1fd9287ea77ea41a2788de90c7642c36b6a
Issue-ID: POLICY-1038
Signed-off-by: Mike Mokry <mm117s@att.com>
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"); |