diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-03-22 23:09:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-22 23:09:06 +0000 |
commit | 28b1dc09f468259ef6c55d11c94b6693465a41d5 (patch) | |
tree | efff764b25bd6e49070e3e40e709defa117a3805 /models-pap/src/main/java/org/onap | |
parent | c61eebfa4f17e30e3be000d4c59bc74e75b880a1 (diff) | |
parent | a4b62b8f4da98eefe530e0fc11f6dafabe0019c2 (diff) |
Merge "Add models-pdp to models repo"
Diffstat (limited to 'models-pap/src/main/java/org/onap')
-rw-r--r-- | models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpSubGroup.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpSubGroup.java b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpSubGroup.java index e535233bc..43356982e 100644 --- a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpSubGroup.java +++ b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PdpSubGroup.java @@ -28,8 +28,8 @@ import lombok.Getter; import lombok.NonNull; import lombok.Setter; import lombok.ToString; -import org.onap.policy.models.base.PfConceptKey; import org.onap.policy.models.base.PfUtils; +import org.onap.policy.models.base.keys.PolicyTypeIdent; /** * Class to represent a group of all PDP's of the same pdp type running for a particular @@ -43,7 +43,7 @@ import org.onap.policy.models.base.PfUtils; public class PdpSubGroup { private String pdpType; - private List<PfConceptKey> supportedPolicyTypes; + private List<PolicyTypeIdent> supportedPolicyTypes; private List<Policy> policies; private int currentInstanceCount; private int desiredInstanceCount; @@ -64,7 +64,7 @@ public class PdpSubGroup { */ public PdpSubGroup(@NonNull PdpSubGroup source) { this.pdpType = source.pdpType; - this.supportedPolicyTypes = PfUtils.mapList(source.supportedPolicyTypes, PfConceptKey::new); + this.supportedPolicyTypes = PfUtils.mapList(source.supportedPolicyTypes, PolicyTypeIdent::new); this.policies = PfUtils.mapList(source.policies, Policy::new); this.currentInstanceCount = source.currentInstanceCount; this.desiredInstanceCount = source.desiredInstanceCount; |