org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / changeManagement / RelatedInstanceList.java
1 package org.onap.vid.changeManagement;
2
3 import com.fasterxml.jackson.annotation.*;
4
5 @JsonInclude(JsonInclude.Include.NON_NULL)
6 @JsonPropertyOrder({
7         "relatedInstance"
8 })
9 public class RelatedInstanceList {
10
11     @JsonProperty("relatedInstance")
12     public RelatedInstance relatedInstance;
13
14     @JsonSetter
15     public RelatedInstance getRelatedInstance() {
16         return relatedInstance;
17     }
18
19     @JsonSetter
20     public void setRelatedInstance(RelatedInstance relatedInstance) {
21         this.relatedInstance = relatedInstance;
22     }
23 }