X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=models-pdp%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fmodels%2Fpdp%2Fconcepts%2FPdpUpdate.java;h=0c088b87e3654cfc65fc21875ec950d3d2ed2a5e;hb=aae9e0b762320f82a1907074667a44bd1349945f;hp=c42f1db093577f2c73d966ba052d9e44672947e1;hpb=f04d89c55ab4dfa94dfed1cc9b65471d1d3140c5;p=policy%2Fmodels.git 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 c42f1db09..0c088b87e 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 @@ -2,6 +2,7 @@ * ============LICENSE_START======================================================= * Copyright (C) 2019 Nordix Foundation. * Modifications Copyright (C) 2019 AT&T Intellectual Property. + * Modifications Copyright (C) 2021 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,6 +29,7 @@ import lombok.Getter; import lombok.Setter; import lombok.ToString; import org.onap.policy.models.pdp.enums.PdpMessageType; +import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier; import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy; /** @@ -57,6 +59,16 @@ public class PdpUpdate extends PdpMessage { */ private List policies = new LinkedList<>(); + /** + * Policies that the PDP should deploy. + */ + private List policiesToBeDeployed = new LinkedList<>(); + + /** + * Policies that the PDP should undeploy. + */ + private List policiesToBeUndeployed = new LinkedList<>(); + /** * Constructor for instantiating PdpUpdate class with message name. *