diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2019-10-17 13:01:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-17 13:01:31 +0000 |
commit | f7b8730ac36537693ec23f9b341636577330ee48 (patch) | |
tree | 4810975639bf653c96fccfbad1f8c89a930589d5 /src/main/java | |
parent | 8ed71d0cfe1f7466b6169e7f9585b3f8616eba19 (diff) | |
parent | 524b364a12f834e826f4e8be1119b61ba14b503c (diff) |
Merge "Add unit tests"
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/org/onap/clamp/loop/components/external/PolicyComponent.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/clamp/loop/components/external/PolicyComponent.java b/src/main/java/org/onap/clamp/loop/components/external/PolicyComponent.java index 9321423a9..44ee52262 100644 --- a/src/main/java/org/onap/clamp/loop/components/external/PolicyComponent.java +++ b/src/main/java/org/onap/clamp/loop/components/external/PolicyComponent.java @@ -52,6 +52,8 @@ public class PolicyComponent extends ExternalComponent { "The policies defined have been created but NOT deployed on the policy engine", 50); public static final ExternalComponentState SENT_AND_DEPLOYED = new ExternalComponentState("SENT_AND_DEPLOYED", "The policies defined have been created and deployed on the policy engine", 10); + public static final ExternalComponentState UNKNOWN = new ExternalComponentState("UNKNOWN", + "The current status is not clear. Need to regresh the status to get the current status.", 0); /** * Default constructor. @@ -62,7 +64,7 @@ public class PolicyComponent extends ExternalComponent { * on by one, each time we increase the level we can't decrease it anymore. * That's why it starts with the lowest one SENT_AND_DEPLOYED. */ - super(SENT_AND_DEPLOYED); + super(UNKNOWN); } @Override |