ActivitySpec - Correcting logger messages
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / RelationshipType.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.List;
24 import java.util.Map;
25
26 public class RelationshipType {
27
28   private String derived_from;
29   private String version;
30   private Map<String, String> metadata;
31   private String description;
32   private Map<String, PropertyDefinition> properties;
33   private Map<String, AttributeDefinition> attributes;
34   private Map<String, Object> interfaces;
35   private List<String> valid_target_types;
36   //An optional list of one or more names of Capability Types that are valid targets
37   // for this relationship
38
39   public String getDerived_from() {
40     return derived_from;
41   }
42
43   public void setDerived_from(String derived_from) {
44     this.derived_from = derived_from;
45   }
46
47   public String getVersion() {
48     return version;
49   }
50
51   public void setVersion(String version) {
52     this.version = version;
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 String getDescription() {
64     return description;
65   }
66
67   public void setDescription(String description) {
68     this.description = description;
69   }
70
71   public Map<String, PropertyDefinition> getProperties() {
72     return properties;
73   }
74
75   public void setProperties(Map<String, PropertyDefinition> properties) {
76     this.properties = properties;
77   }
78
79   public Map<String, AttributeDefinition> getAttributes() {
80     return attributes;
81   }
82
83   public void setAttributes(Map<String, AttributeDefinition> attributes) {
84     this.attributes = attributes;
85   }
86
87   public Map<String, Object> getInterfaces() {
88     return interfaces;
89   }
90
91   public void setInterfaces(Map<String, Object> interfaces) {
92     this.interfaces = interfaces;
93   }
94
95   public List<String> getValid_target_types() {
96     return valid_target_types;
97   }
98
99   public void setValid_target_types(List<String> valid_target_types) {
100     this.valid_target_types = valid_target_types;
101   }
102 }