Add CLI in verigraph.
[parser.git] / verigraph / src / it / polito / verigraph / tosca / yaml / beans / RelationshipTemplateYaml.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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;\r
12 import java.util.Map;\r
13 \r
14 @JsonIgnoreProperties(ignoreUnknown = true)\r
15 public class RelationshipTemplateYaml {\r
16     private String type;\r
17     private Map<String, String> properties;\r
18     public String getType() {\r
19         return type;\r
20     }\r
21     public void setType(String type) {\r
22         this.type = type;\r
23     }\r
24     public Map<String, String> getProperties() {\r
25         return properties;\r
26     }\r
27     public void setProperties(Map<String, String> properties) {\r
28         this.properties = properties;\r
29     }\r
30 }\r