org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / Result.java
1 package org.onap.vid.aai.model;
2
3 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
4 import org.codehaus.jackson.annotate.JsonProperty;
5
6 /**
7  * Created by moriya1 on 15/10/2017.
8  */
9 @JsonIgnoreProperties(ignoreUnknown = true)
10 public class Result {
11     @JsonProperty("model")
12     private Model model;
13
14     @JsonProperty("model")
15     public Model getModel() {
16         return model;
17     }
18
19     @JsonProperty("model")
20     public void setModel(Model model) {
21         this.model = model;
22     }
23
24
25
26 }