aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/Vlan.java
blob: a184648501815b13c8ccb56ef7fc493bf7c32651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package org.onap.vid.aai.model.AaiGetNetworkCollectionDetails;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.onap.vid.aai.model.interfaces.AaiModelWithRelationships;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Vlan implements AaiModelWithRelationships {

    public Vlan(
            @JsonProperty("vlan-interface") String vlanInterface,
            @JsonProperty("vlan-id-inner") String vlanIdInner,
            @JsonProperty("relationship-list") RelationshipList relationshipList) {
        this.vlanInterface = vlanInterface;
        this.vlanIdInner = vlanIdInner;
        this.relationshipList = relationshipList;
    }

    @JsonProperty("vlan-interface")
    private final String vlanInterface;

    @JsonProperty("vlan-id-inner")
    private final String vlanIdInner;

    @JsonProperty("relationship-list")
    public final RelationshipList relationshipList;

    public String getVlanInterface() {
        return vlanInterface;
    }

    public String getVlanIdInner() {
        return vlanIdInner;
    }

    @Override
    public RelationshipList getRelationshipList() {
        return relationshipList;
    }

}