Fix for radio buttons
[sdc.git] / asdc-tests / src / main / java / org / openecomp / sdc / ci / tests / tosca / datatypes / ToscaNodeTemplatesTopologyTemplateDefinition.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.ci.tests.tosca.datatypes;
22
23 import java.util.List;
24
25 public class ToscaNodeTemplatesTopologyTemplateDefinition {
26
27         String name;
28         String type;
29         List<ToscaPropertiesNodeTemplatesDefinition> properties;
30         List<ToscaRequirementsNodeTemplatesDefinition> requirements;
31         List<ToscaCapabilitiesNodeTemplatesDefinition> capabilities;
32
33         public ToscaNodeTemplatesTopologyTemplateDefinition() {
34                 super();
35         }
36
37         public String getName() {
38                 return name;
39         }
40
41         public void setName(String name) {
42                 this.name = name;
43         }
44
45         public String getType() {
46                 return type;
47         }
48
49         public void setType(String type) {
50                 this.type = type;
51         }
52
53         public List<ToscaPropertiesNodeTemplatesDefinition> getProperties() {
54                 return properties;
55         }
56
57         public void setProperties(List<ToscaPropertiesNodeTemplatesDefinition> properties) {
58                 this.properties = properties;
59         }
60
61         public List<ToscaRequirementsNodeTemplatesDefinition> getRequirements() {
62                 return requirements;
63         }
64
65         public void setRequirements(List<ToscaRequirementsNodeTemplatesDefinition> requirements) {
66                 this.requirements = requirements;
67         }
68
69         public List<ToscaCapabilitiesNodeTemplatesDefinition> getCapabilities() {
70                 return capabilities;
71         }
72
73         public void setCapabilities(List<ToscaCapabilitiesNodeTemplatesDefinition> capabilities) {
74                 this.capabilities = capabilities;
75         }
76
77         @Override
78         public String toString() {
79                 return "ToscaNodeTemplatesTopologyTemplateDefinition [name=" + name + ", type=" + type + ", properties="
80                                 + properties + ", requirements=" + requirements + ", capabilities=" + capabilities + "]";
81         }
82
83 }