ActivitySpec - Correcting logger messages
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-api / src / main / java / org / openecomp / sdc / generator / aai / tosca / TopologyTemplate.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.generator.aai.tosca;
22
23 import java.util.HashMap;
24 import java.util.Map;
25 import java.util.Objects;
26
27 public class TopologyTemplate {
28
29   private String description;
30   private Map<String, NodeTemplate> node_templates;
31   private Map<String, GroupDefinition> groups;
32
33
34   public String getDescription() {
35     return description;
36   }
37
38   public void setDescription(String description) {
39     this.description = description;
40   }
41
42   public Map<String, GroupDefinition> getGroups() {
43     return groups;
44   }
45
46   public void setGroups(Map<String, GroupDefinition> groups) {
47     this.groups = groups;
48   }
49
50   public Map<String, NodeTemplate> getNode_templates() {
51     return node_templates;
52   }
53
54   public void setNode_templates(Map<String, NodeTemplate> node_templates) {
55     this.node_templates = node_templates;
56   }
57
58   /**
59    * Add group.
60    *
61    * @param groupKey        the group key
62    * @param groupDefinition the group definition
63    */
64   public void addGroup(String groupKey, GroupDefinition groupDefinition) {
65     if (Objects.isNull(this.groups)) {
66       this.groups = new HashMap<>();
67     }
68     this.groups.put(groupKey, groupDefinition);
69   }
70
71 }