diff options
author | waynedunican <wayne.dunican@est.tech> | 2021-05-27 09:12:05 +0100 |
---|---|---|
committer | WayneDunican <wayne.dunican@est.tech> | 2021-05-27 20:03:00 +0100 |
commit | 64ce7957251a5de6fa57204e41e2699939adae47 (patch) | |
tree | 42bec72d6b6d876d86dae5f4fcff4821f2de177a /models-pdp/src/main | |
parent | d00c73842c6f8e7bb00b29d2fb5dd63b9cde4bfe (diff) |
Remove policies field from PdpUpdate message
Issue-ID: POLICY-3323
Change-Id: I14dafe4a20f95e2ebe4279e5b6ae141e2ee4fc48
Signed-off-by: waynedunican <wayne.dunican@est.tech>
Signed-off-by: WayneDunican <wayne.dunican@est.tech>
Diffstat (limited to 'models-pdp/src/main')
-rw-r--r-- | models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpUpdate.java | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpUpdate.java b/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpUpdate.java index 0c088b87e..19f79ee88 100644 --- a/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpUpdate.java +++ b/models-pdp/src/main/java/org/onap/policy/models/pdp/concepts/PdpUpdate.java @@ -52,14 +52,6 @@ public class PdpUpdate extends PdpMessage { private Long pdpHeartbeatIntervalMs; /** - * Policies that the PDP should deploy. This is a complete list, so PDPs should be - * prepared to deploy new policies listed and undeploy policies that are no longer - * listed. Note: this list may be empty, as a PDP may remain attached to a subgroup - * even if all of the policies are removed from the subgroup. - */ - private List<ToscaPolicy> policies = new LinkedList<>(); - - /** * Policies that the PDP should deploy. */ private List<ToscaPolicy> policiesToBeDeployed = new LinkedList<>(); @@ -87,7 +79,9 @@ public class PdpUpdate extends PdpMessage { this.description = source.description; this.pdpHeartbeatIntervalMs = source.pdpHeartbeatIntervalMs; - this.policies = (source.policies == null ? null - : source.policies.stream().map(ToscaPolicy::new).collect(Collectors.toList())); + this.policiesToBeDeployed = (source.policiesToBeDeployed == null ? null + : source.policiesToBeDeployed.stream().map(ToscaPolicy::new).collect(Collectors.toList())); + this.policiesToBeUndeployed = (source.policiesToBeUndeployed == null ? null + : source.policiesToBeUndeployed.stream().map(ToscaConceptIdentifier::new).collect(Collectors.toList())); } } |