[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / NodeType.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.tosca.datatypes.model;
22
23 import java.util.List;
24 import java.util.Map;
25
26 public class NodeType {
27
28   private String derived_from;
29   private String version;
30   private String description;
31   private Map<String, PropertyDefinition> properties;
32   private Map<String, AttributeDefinition> attributes;
33   private List<Map<String, RequirementDefinition>> requirements;
34   private Map<String, CapabilityDefinition> capabilities;
35   private Map<String, InterfaceDefinition> interfaces;
36   private Map<String, ArtifactDefinition> artifacts;
37
38
39   public String getDerived_from() {
40     return derived_from;
41   }
42
43   public void setDerived_from(String derivedFrom) {
44     this.derived_from = derivedFrom;
45   }
46
47   public String getVersion() {
48     return version;
49   }
50
51   public void setVersion(String version) {
52     this.version = version;
53   }
54
55   public String getDescription() {
56     return description;
57   }
58
59   public void setDescription(String description) {
60     this.description = description;
61   }
62
63   public Map<String, PropertyDefinition> getProperties() {
64     return properties;
65   }
66
67   public void setProperties(Map<String, PropertyDefinition> properties) {
68     this.properties = properties;
69   }
70
71   public Map<String, AttributeDefinition> getAttributes() {
72     return attributes;
73   }
74
75   public void setAttributes(Map<String, AttributeDefinition> attributes) {
76     this.attributes = attributes;
77   }
78
79   public List<Map<String, RequirementDefinition>> getRequirements() {
80     return requirements;
81   }
82
83   public void setRequirements(List<Map<String, RequirementDefinition>> requirements) {
84     this.requirements = requirements;
85   }
86
87   public Map<String, CapabilityDefinition> getCapabilities() {
88     return capabilities;
89   }
90
91   public void setCapabilities(Map<String, CapabilityDefinition> capabilities) {
92     this.capabilities = capabilities;
93   }
94
95   public Map<String, InterfaceDefinition> getInterfaces() {
96     return interfaces;
97   }
98
99   public void setInterfaces(Map<String, InterfaceDefinition> interfaces) {
100     this.interfaces = interfaces;
101   }
102
103   public Map<String, ArtifactDefinition> getArtifacts() {
104     return artifacts;
105   }
106
107   public void setArtifacts(Map<String, ArtifactDefinition> artifacts) {
108     this.artifacts = artifacts;
109   }
110
111   @Override
112   public NodeType clone() {
113     NodeType clone = new NodeType();
114     clone.setCapabilities(this.getCapabilities());
115     clone.setDerived_from(this.getDerived_from());
116     clone.setProperties(this.getProperties());
117     clone.setRequirements(this.getRequirements());
118     clone.setDescription(this.getDescription());
119     clone.setAttributes(this.getAttributes());
120     clone.setInterfaces(this.getInterfaces());
121     clone.setVersion(this.getVersion());
122     clone.setArtifacts(this.getArtifacts());
123     return clone;
124   }
125 }