881f7f587e1387cbc0cdf449fc3527c6e1e217d5
[sdc.git] /
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.ci.tests.tosca.datatypes;
22
23 import java.util.Map;
24
25 public class ToscaRelationshipTemplatesTopologyTemplateDefinition {
26
27         public ToscaRelationshipTemplatesTopologyTemplateDefinition() {
28         }
29
30         private String type;
31         private String description;
32         private Map<String, Object> properties;
33         private Map<String, Object> attributes;
34         private Map<String, Object> interfaces;
35         private String copy;
36         public String getType() {
37                 return type;
38         }
39         public void setType(String type) {
40                 this.type = type;
41         }
42         public String getDescription() {
43                 return description;
44         }
45         public void setDescription(String description) {
46                 this.description = description;
47         }
48         public Map<String, Object> getProperties() {
49                 return properties;
50         }
51         public void setProperties(Map<String, Object> properties) {
52                 this.properties = properties;
53         }
54         public Map<String, Object> getAttributes() {
55                 return attributes;
56         }
57         public void setAttributes(Map<String, Object> attributes) {
58                 this.attributes = attributes;
59         }
60         public Map<String, Object> getInterfaces() {
61                 return interfaces;
62         }
63         public void setInterfaces(Map<String, Object> interfaces) {
64                 this.interfaces = interfaces;
65         }
66         public String getCopy() {
67                 return copy;
68         }
69         public void setCopy(String copy) {
70                 this.copy = copy;
71         }
72         @Override
73         public String toString() {
74                 return "ToscaRelationshipTemplatesTopologyTemplateDefinition [type=" + type + ", description=" + description + ", properties=" + properties + ", attributes=" + attributes + ", interfaces=" + interfaces + ", copy=" + copy + "]";
75         }
76         
77         
78 }