Improve test coverage
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / PolicyDefinition.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.model;
22
23 import java.util.HashMap;
24 import java.util.Map;
25 import java.util.stream.Collectors;
26 import org.openecomp.sdc.be.datatypes.elements.PolicyDataDefinition;
27 import org.openecomp.sdc.be.datatypes.elements.PropertiesOwner;
28 import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
29 /**
30  * public class representing the component policy
31  */
32 public class PolicyDefinition extends PolicyDataDefinition implements PropertiesOwner {
33
34     /**
35      * public constructor by default
36      */
37     public PolicyDefinition() {
38         super();
39     }
40
41     public PolicyDefinition(PropertyDataDefinition propertyDataDefinition) {
42         super(propertyDataDefinition);
43     }
44
45     /**
46      * public constructor from superclass
47      * @param policy
48      */
49     public PolicyDefinition(Map<String, Object> policy) {
50         super(policy);
51     }
52
53     /**
54      * public copy constructor
55      * @param other
56      */
57     public PolicyDefinition(PolicyDataDefinition other) {
58         super(other);
59     }
60
61     /**
62      * public converter constructor
63      * builds PolicyDefinition object based on received PolicyTypeDefinition object
64      * @param policyType
65      */
66     public PolicyDefinition(PolicyTypeDefinition policyType) {
67         this.setPolicyTypeName(policyType.getType());
68         this.setPolicyTypeUid(policyType.getUniqueId());
69         this.setDerivedFrom(policyType.getDerivedFrom());
70         this.setDescription(policyType.getDescription());
71         this.setVersion(policyType.getVersion());
72         if (policyType.getProperties() != null) {
73             this.setProperties(policyType.getProperties().stream().map(PropertyDataDefinition::new).collect(Collectors.toList()));
74         }
75         this.setTargets(new HashMap<>());
76
77     }
78
79     @Override
80     public String getNormalizedName() {
81         return getName();
82     }
83 }