[SDC-29] Amdocs OnBoard 1707 initial commit.
[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, Object> properties;
32   private Map<String, Object> attributes;
33   private Map<String, RequirementAssignment> requirements;
34   private Map<String, CapabilityAssignment> capabilities;
35   private Map<String, InterfaceDefinition> interfaces;
36   private String copy;
37
38   public String getType() {
39     return type;
40   }
41
42   public void setType(String type) {
43     this.type = type;
44   }
45
46   public String getDescription() {
47     return description;
48   }
49
50   public void setDescription(String description) {
51     this.description = description;
52   }
53
54   public Map<String, Object> getProperties() {
55     return properties;
56   }
57
58   public void setProperties(Map<String, Object> properties) {
59     this.properties = properties;
60   }
61
62   public Map<String, Object> getAttributes() {
63     return attributes;
64   }
65
66   public void setAttributes(Map<String, Object> attributes) {
67     this.attributes = attributes;
68   }
69
70   public Map<String, RequirementAssignment> getRequirements() {
71     return requirements;
72   }
73
74   public void setRequirements(Map<String, RequirementAssignment> requirements) {
75     this.requirements = requirements;
76   }
77
78   public Map<String, CapabilityAssignment> getCapabilities() {
79     return capabilities;
80   }
81
82   public void setCapabilities(Map<String, CapabilityAssignment> capabilities) {
83     this.capabilities = capabilities;
84   }
85
86   public Map<String, InterfaceDefinition> getInterfaces() {
87     return interfaces;
88   }
89
90   public void setInterfaces(Map<String, InterfaceDefinition> interfaces) {
91     this.interfaces = interfaces;
92   }
93
94   public String getCopy() {
95     return copy;
96   }
97
98   public void setCopy(String copy) {
99     this.copy = copy;
100   }
101 }