Add CLI in verigraph.
[parser.git] / verigraph / src / it / polito / verigraph / tosca / yaml / beans / FirewallConfigurationYaml.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 \r
13 public class FirewallConfigurationYaml implements ConfigurationYaml{\r
14     private Map<String, String> elements;\r
15 \r
16     public Map<String, String> getElements() {\r
17         return elements;\r
18     }\r
19 \r
20     public void setElements(Map<String, String> elements) {\r
21         this.elements = elements;\r
22     }\r
23 \r
24 }\r