aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/changeManagement/RelatedInstanceList.java
blob: b3e67a0200f2c3cf7d3777f7e8a8b38d3d8fd375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.onap.vid.changeManagement;

import com.fasterxml.jackson.annotation.*;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
        "relatedInstance"
})
public class RelatedInstanceList {

    @JsonProperty("relatedInstance")
    public RelatedInstance relatedInstance;

    @JsonSetter
    public RelatedInstance getRelatedInstance() {
        return relatedInstance;
    }

    @JsonSetter
    public void setRelatedInstance(RelatedInstance relatedInstance) {
        this.relatedInstance = relatedInstance;
    }
}