Reformat catalog-model
[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 package org.openecomp.sdc.be.model;
21
22 import java.util.HashMap;
23 import java.util.Map;
24 import java.util.stream.Collectors;
25 import org.openecomp.sdc.be.datatypes.elements.PolicyDataDefinition;
26 import org.openecomp.sdc.be.datatypes.elements.PropertiesOwner;
27 import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
28
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      *
48      * @param policy
49      */
50     public PolicyDefinition(Map<String, Object> policy) {
51         super(policy);
52     }
53
54     /**
55      * public copy constructor
56      *
57      * @param other
58      */
59     public PolicyDefinition(PolicyDataDefinition other) {
60         super(other);
61     }
62
63     /**
64      * public converter constructor builds PolicyDefinition object based on received PolicyTypeDefinition object
65      *
66      * @param policyType
67      */
68     public PolicyDefinition(PolicyTypeDefinition policyType) {
69         this.setPolicyTypeName(policyType.getType());
70         this.setPolicyTypeUid(policyType.getUniqueId());
71         this.setDerivedFrom(policyType.getDerivedFrom());
72         this.setDescription(policyType.getDescription());
73         this.setVersion(policyType.getVersion());
74         if (policyType.getProperties() != null) {
75             this.setProperties(policyType.getProperties().stream().map(PropertyDataDefinition::new).collect(Collectors.toList()));
76         }
77         this.setTargets(new HashMap<>());
78     }
79
80     @Override
81     public String getNormalizedName() {
82         return getName();
83     }
84 }