Add CLI in verigraph.
[parser.git] / verigraph / src / it / polito / verigraph / tosca / yaml / beans / VerificationYaml.java
1 /*******************************************************************************
2  * Copyright (c) 2018 Politecnico di Torino and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9 package it.polito.verigraph.tosca.yaml.beans;
10
11 import java.util.List;
12 import com.fasterxml.jackson.annotation.*;
13
14 @JsonIgnoreProperties(ignoreUnknown = true)
15 public class VerificationYaml {
16     /*    private Map<String, String> metadata;
17         private String description;*/
18     private String result;
19     private String comment;
20     private List<ServiceTemplateYaml> paths;
21
22     /*    public Map<String, String> getMetadata() {
23         return metadata;
24     }
25     public void setMetadata(Map<String, String> metadata) {
26         this.metadata = metadata;
27     }
28     public String getDescription() {
29         return description;
30     }
31     public void setDescription(String description) {
32         this.description = description;
33     }*/
34     public String getResult() {
35         return result;
36     }
37
38     public void setResult(String result) {
39         this.result = result;
40     }
41
42     public String getComment() {
43         return comment;
44     }
45
46     public void setComment(String comment) {
47         this.comment = comment;
48     }
49
50     public List<ServiceTemplateYaml> getPaths() {
51         return paths;
52     }
53
54     public void setPaths(List<ServiceTemplateYaml> paths) {
55         this.paths = paths;
56     }
57
58 }