Support python3 uploaded to pypi websit
[parser.git] / verigraph / src / it / polito / verigraph / tosca / yaml / beans / TopologyTemplateYaml.java
1 /*******************************************************************************\r
2  * Copyright (c) 2018 Politecnico di Torino and others.\r
3  *\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Apache License, Version 2.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.apache.org/licenses/LICENSE-2.0\r
8  *******************************************************************************/\r
9 package it.polito.verigraph.tosca.yaml.beans;\r
10 \r
11 import java.util.Map;\r
12 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;\r
13 \r
14 @JsonIgnoreProperties(ignoreUnknown = true)\r
15 public class TopologyTemplateYaml {\r
16     private Map<String, NodeTemplateYaml> node_templates;\r
17     private Map<String, RelationshipTemplateYaml> relationship_templates;\r
18 \r
19     public Map<String, RelationshipTemplateYaml> getRelationship_templates() {\r
20         return relationship_templates;\r
21     }\r
22 \r
23     public void setRelationship_templates(Map<String, RelationshipTemplateYaml> relationship_templates) {\r
24         this.relationship_templates = relationship_templates;\r
25     }\r
26 \r
27     public Map<String, NodeTemplateYaml> getNode_templates() {\r
28         return node_templates;\r
29     }\r
30 \r
31     public void setNode_templates(Map<String, NodeTemplateYaml> node_templates) {\r
32         this.node_templates = node_templates;\r
33     }\r
34 \r
35 }\r