push addional code
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / CapabilityType.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 CapabilityType {
27
28   private String derived_from;
29   private String version;
30   private String description;
31   private Map<String, PropertyDefinition> properties;
32   private Map<String, AttributeDefinition> attributes;
33   private List<String> valid_source_types;
34
35   public String getDerived_from() {
36     return derived_from;
37   }
38
39   public void setDerived_from(String derivedFrom) {
40     this.derived_from = derivedFrom;
41   }
42
43   public String getVersion() {
44     return version;
45   }
46
47   public void setVersion(String version) {
48     this.version = version;
49   }
50
51   public String getDescription() {
52     return description;
53   }
54
55   public void setDescription(String description) {
56     this.description = description;
57   }
58
59   public Map<String, PropertyDefinition> getProperties() {
60     return properties;
61   }
62
63   public void setProperties(Map<String, PropertyDefinition> properties) {
64     this.properties = properties;
65   }
66
67   public Map<String, AttributeDefinition> getAttributes() {
68     return attributes;
69   }
70
71   public void setAttributes(Map<String, AttributeDefinition> attributes) {
72     this.attributes = attributes;
73   }
74
75   public List<String> getValid_source_types() {
76     return valid_source_types;
77   }
78
79   public void setValid_source_types(List<String> validSourceTypes) {
80     this.valid_source_types = validSourceTypes;
81   }
82 }