Add CLI in verigraph.
[parser.git] / verigraph / src / it / polito / verigraph / tosca / yaml / beans / DpiConfigurationYaml.java
diff --git a/verigraph/src/it/polito/verigraph/tosca/yaml/beans/DpiConfigurationYaml.java b/verigraph/src/it/polito/verigraph/tosca/yaml/beans/DpiConfigurationYaml.java
new file mode 100644 (file)
index 0000000..3074780
--- /dev/null
@@ -0,0 +1,26 @@
+/*******************************************************************************\r
+ * Copyright (c) 2018 Politecnico di Torino and others.\r
+ *\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Apache License, Version 2.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *******************************************************************************/\r
+package it.polito.verigraph.tosca.yaml.beans;\r
+\r
+import java.util.List;\r
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;\r
+\r
+@JsonIgnoreProperties(ignoreUnknown = true) \r
+public class DpiConfigurationYaml implements ConfigurationYaml{\r
+    private List<String> notAllowedList;\r
+\r
+    public List<String> getNotAllowedList() {\r
+        return notAllowedList;\r
+    }\r
+\r
+    public void setNotAllowedList(List<String> notAllowedList) {\r
+        this.notAllowedList = notAllowedList;\r
+    }\r
+\r
+}\r