387238206c8e33dcfd98edfc097c316a10effb3e
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaTemplate.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 org.apache.commons.lang3.tuple.Triple;
24 import org.openecomp.sdc.be.model.Component;
25
26 import java.util.List;
27 import java.util.Map;
28
29 public class ToscaTemplate {
30     private String tosca_definitions_version;
31     private ToscaMetadata metadata;
32     private List<Map<String, Map<String, String>>> imports;
33     private Map<String, ToscaNodeType> node_types;
34     private ToscaTopolgyTemplate topology_template;
35
36     private List<Triple<String, String, Component>> dependencies;
37
38     public ToscaTemplate(String tosca_definitions_version) {
39         this.tosca_definitions_version = tosca_definitions_version;
40     }
41
42     public Map<String, ToscaNodeType> getNode_types() {
43         return node_types;
44     }
45
46     public void setNode_types(Map<String, ToscaNodeType> node_types) {
47         this.node_types = node_types;
48     }
49
50     public List<Map<String, Map<String, String>>> getImports() {
51         return imports;
52     }
53
54     public void setImports(List<Map<String, Map<String, String>>> imports) {
55         this.imports = imports;
56     }
57
58     public String getTosca_definitions_version() {
59         return tosca_definitions_version;
60     }
61
62     public void setTosca_definitions_version(String tosca_definitions_version) {
63         this.tosca_definitions_version = tosca_definitions_version;
64     }
65
66     public ToscaMetadata getMetadata() {
67         return metadata;
68     }
69
70     public void setMetadata(ToscaMetadata metadata) {
71         this.metadata = metadata;
72     }
73
74     public ToscaTopolgyTemplate getTopology_template() {
75         return topology_template;
76     }
77
78     public void setTopology_template(ToscaTopolgyTemplate topology_template) {
79         this.topology_template = topology_template;
80     }
81
82     public List<Triple<String, String, Component>> getDependencies() {
83         return dependencies;
84     }
85
86     public void setDependencies(List<Triple<String, String, Component>> dependencies) {
87         this.dependencies = dependencies;
88     }
89
90 }