Changed identifiers to concept identifiers
[policy/models.git] / models-pap / src / main / java / org / onap / policy / models / pap / concepts / PdpDeployPolicies.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Models
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2021 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.pap.concepts;
23
24 import java.util.List;
25 import java.util.stream.Collectors;
26 import lombok.ToString;
27 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifierOptVersion;
28
29 /**
30  * Request deploy or update a set of policies using the <i>simple</i> PDP Group deployment REST API. Only the "name" and
31  * "version" fields of a Policy are used, and only the "name" field is actually required.
32  */
33 @ToString
34 public class PdpDeployPolicies {
35     private List<PapPolicyIdentifier> policies;
36
37     /**
38      * Get the identifiers of the policies on the list.
39      *
40      * @return The list of identifiers
41      */
42     public List<ToscaConceptIdentifierOptVersion> getPolicies() {
43         return policies == null ? null
44                 : policies.stream().map(PapPolicyIdentifier::getGenericIdentifier).collect(Collectors.toList());
45     }
46
47     /**
48      * Set the identifiers of the policies on the list.
49      *
50      * @param policies The list of identifiers
51      */
52     public void setPolicies(final List<ToscaConceptIdentifierOptVersion> policies) {
53         this.policies =
54                 policies == null ? null : policies.stream().map(PapPolicyIdentifier::new).collect(Collectors.toList());
55     }
56 }