016c117e84615943caa9ed5a7cfb794ce45cd811
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / CapabilityTypeDefinition.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 org.openecomp.sdc.be.datatypes.elements.CapabilityTypeDataDefinition;
24 import org.openecomp.sdc.be.resources.data.CapabilityTypeData;
25
26 import java.util.Map;
27 import java.util.stream.Collectors;
28
29 /**
30  * Specifies the capabilities that the Node Type exposes.
31  */
32 @SuppressWarnings("serial")
33 public class CapabilityTypeDefinition extends CapabilityTypeDataDefinition {
34
35     private String derivedFrom;
36
37     private Map<String, PropertyDefinition> properties;
38
39     public String getDerivedFrom() {
40         return derivedFrom;
41     }
42
43     public void setDerivedFrom(String derivedFrom) {
44         this.derivedFrom = derivedFrom;
45     }
46
47     public Map<String, PropertyDefinition> getProperties() {
48         return properties;
49     }
50
51     public void setProperties(Map<String, PropertyDefinition> properties) {
52         this.properties = properties;
53     }
54
55     public CapabilityTypeDefinition() {
56         super();
57     }
58
59     public CapabilityTypeDefinition(CapabilityTypeDataDefinition p) {
60         super(p);
61     }
62         
63         public CapabilityTypeDefinition(CapabilityDefinition cp) {
64                 this.setUniqueId(cp.getUniqueId());
65                 this.setDescription ( cp.getDescription());
66                 this.setType(cp.getType());
67                 this.setValidSourceTypes( cp.getValidSourceTypes()); 
68                 this.setProperties(cp.getProperties().stream().collect(Collectors.toMap(ComponentInstanceProperty::getName, PropertyDefinition::new)));
69         }
70
71         public CapabilityTypeDefinition(CapabilityTypeData ctd) {
72                 this.setUniqueId(ctd.getUniqueId());
73                 this.setType(ctd.getCapabilityTypeDataDefinition().getType());
74                 this.setDescription ( ctd.getCapabilityTypeDataDefinition().getDescription());
75                 this.setValidSourceTypes( ctd.getCapabilityTypeDataDefinition().getValidSourceTypes()); 
76         }
77
78     @Override
79     public String toString() {
80         return super.toString() + " [ derivedFrom=" + derivedFrom + ", properties=" + properties + " ]";
81     }
82 }