re base code
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / ToscaTypeDataDefinition.java
1 package org.openecomp.sdc.be.datatypes.elements;
2
3 import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
4
5 public class ToscaTypeDataDefinition extends ToscaDataDefinition {
6
7     private String name;
8     private String icon;
9     private String type;
10
11     ToscaTypeDataDefinition() {
12     }
13
14     ToscaTypeDataDefinition(ToscaTypeDataDefinition other) {
15         this.name = other.getName();
16         this.icon = other.icon;
17         this.type = other.type;
18     }
19
20     public String getName() {
21         return name;
22     }
23
24     public void setName(String name) {
25         this.name = name;
26     }
27
28     public String getIcon() {
29         return icon;
30     }
31
32     public void setIcon(String icon) {
33         this.icon = icon;
34     }
35
36     public String getType() {
37         return type;
38     }
39
40     public void setType(String type) {
41         this.type = type;
42     }
43 }