4f56cc3befed512d48d4b679b1734b71311c29fe
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaNodeType.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.tosca.model;
22
23 import java.util.List;
24 import java.util.Map;
25
26 public class ToscaNodeType {
27     public ToscaNodeType() {
28     }
29
30     private ToscaMetadata metadata;
31     private String derived_from;
32     private String description;
33
34     private Map<String, ToscaProperty> properties;
35     private Map<String, ToscaCapability> capabilities;
36
37     private List<Map<String, ToscaRequirement>> requirements;
38
39     public Map<String, ToscaProperty> getProperties() {
40         return properties;
41     }
42
43     public void setProperties(Map<String, ToscaProperty> properties) {
44         this.properties = properties;
45     }
46
47     public Map<String, ToscaCapability> getCapabilities() {
48         return capabilities;
49     }
50
51     public void setCapabilities(Map<String, ToscaCapability> capabilities) {
52         this.capabilities = capabilities;
53     }
54
55     public List<Map<String, ToscaRequirement>> getRequirements() {
56         return requirements;
57     }
58
59     public void setRequirements(List<Map<String, ToscaRequirement>> requirements) {
60         this.requirements = requirements;
61     }
62
63     public String getDerived_from() {
64         return derived_from;
65     }
66
67     public void setDerived_from(String derived_from) {
68         this.derived_from = derived_from;
69     }
70
71     public String getDescription() {
72         return description;
73     }
74
75     public void setDescription(String description) {
76         this.description = description;
77     }
78
79     public ToscaMetadata getMetadata() {
80         return metadata;
81     }
82
83     public void setMetadata(ToscaMetadata metadata) {
84         this.metadata = metadata;
85     }
86
87 }