2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.ci.tests.tosca.datatypes;
25 public class ToscaRelationshipTemplatesTopologyTemplateDefinition {
27 public ToscaRelationshipTemplatesTopologyTemplateDefinition() {
31 private String description;
32 private Map<String, Object> properties;
33 private Map<String, Object> attributes;
34 private Map<String, Object> interfaces;
36 public String getType() {
39 public void setType(String type) {
42 public String getDescription() {
45 public void setDescription(String description) {
46 this.description = description;
48 public Map<String, Object> getProperties() {
51 public void setProperties(Map<String, Object> properties) {
52 this.properties = properties;
54 public Map<String, Object> getAttributes() {
57 public void setAttributes(Map<String, Object> attributes) {
58 this.attributes = attributes;
60 public Map<String, Object> getInterfaces() {
63 public void setInterfaces(Map<String, Object> interfaces) {
64 this.interfaces = interfaces;
66 public String getCopy() {
69 public void setCopy(String copy) {
73 public String toString() {
74 return "ToscaRelationshipTemplatesTopologyTemplateDefinition [type=" + type + ", description=" + description + ", properties=" + properties + ", attributes=" + attributes + ", interfaces=" + interfaces + ", copy=" + copy + "]";