Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaTopolgyTemplate.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.be.tosca.model;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 public class ToscaTopolgyTemplate {
27     private Map<String, ToscaProperty> inputs;
28     private Map<String, ToscaNodeTemplate> node_templates;
29     private Map<String, ToscaGroupTemplate> groups;
30     private SubstitutionMapping substitution_mappings;
31
32     public Map<String, ToscaNodeTemplate> getNode_templates() {
33         return node_templates;
34     }
35
36     public void setNode_templates(Map<String, ToscaNodeTemplate> node_templates) {
37         this.node_templates = node_templates;
38     }
39
40     public Map<String, ToscaGroupTemplate> getGroups() {
41         return groups;
42     }
43
44     public void addGroups(Map<String, ToscaGroupTemplate> groups) {
45         if ( this.groups == null ){
46             this.groups = new HashMap<>();
47         }
48         this.groups.putAll(groups);
49     }
50
51     public SubstitutionMapping getSubstitution_mappings() {
52         return substitution_mappings;
53     }
54
55     public void setSubstitution_mappings(SubstitutionMapping substitution_mapping) {
56         this.substitution_mappings = substitution_mapping;
57     }
58
59     public Map<String, ToscaProperty> getInputs() {
60         return inputs;
61     }
62
63     public void setInputs(Map<String, ToscaProperty> inputs) {
64         this.inputs = inputs;
65     }
66
67 }