d354807c2f38d781f9dca6b229a50c1dac107a7b
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / RelationshipTemplate.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.Map;
24
25
26
27 public class RelationshipTemplate implements Template {
28
29   private String type;
30   private String description;
31   private Map<String, String> metadata;
32   private Map<String, Object> properties;
33   private Map<String, Object> attributes;
34   private Map<String, RequirementAssignment> requirements;
35   private Map<String, CapabilityAssignment> capabilities;
36   private Map<String, Object> interfaces;
37   private String copy;
38
39   public String getType() {
40     return type;
41   }
42
43   public void setType(String type) {
44     this.type = type;
45   }
46
47   public String getDescription() {
48     return description;
49   }
50
51   public void setDescription(String description) {
52     this.description = description;
53   }
54
55   public Map<String, String> getMetadata() {
56     return metadata;
57   }
58
59   public void setMetadata(Map<String, String> metadata) {
60     this.metadata = metadata;
61   }
62
63   public Map<String, Object> getProperties() {
64     return properties;
65   }
66
67   public void setProperties(Map<String, Object> properties) {
68     this.properties = properties;
69   }
70
71   public Map<String, Object> getAttributes() {
72     return attributes;
73   }
74
75   public void setAttributes(Map<String, Object> attributes) {
76     this.attributes = attributes;
77   }
78
79   public Map<String, RequirementAssignment> getRequirements() {
80     return requirements;
81   }
82
83   public void setRequirements(Map<String, RequirementAssignment> requirements) {
84     this.requirements = requirements;
85   }
86
87   public Map<String, CapabilityAssignment> getCapabilities() {
88     return capabilities;
89   }
90
91   public void setCapabilities(Map<String, CapabilityAssignment> capabilities) {
92     this.capabilities = capabilities;
93   }
94
95   public Map<String, Object> getInterfaces() {
96     return interfaces;
97   }
98
99   public void setInterfaces(Map<String, Object> interfaces) {
100     this.interfaces = interfaces;
101   }
102
103   public String getCopy() {
104     return copy;
105   }
106
107   public void setCopy(String copy) {
108     this.copy = copy;
109   }
110 }