Add CLI in verigraph.
[parser.git] / verigraph / src / it / polito / verigraph / tosca / yaml / beans / MailServerConfigurationYaml.java
diff --git a/verigraph/src/it/polito/verigraph/tosca/yaml/beans/MailServerConfigurationYaml.java b/verigraph/src/it/polito/verigraph/tosca/yaml/beans/MailServerConfigurationYaml.java
new file mode 100644 (file)
index 0000000..3672727
--- /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 MailServerConfigurationYaml implements ConfigurationYaml {\r
+    private List<String> names;\r
+\r
+    public List<String> getNames() {\r
+        return names;\r
+    }\r
+\r
+    public void setNames(List<String> names) {\r
+        this.names = names;\r
+    }\r
+\r
+}\r