aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/Network.java
blob: 29450a8f8810126d29bd63d1d39e9f9c163d366b (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package org.onap.vid.aai.model.AaiGetNetworkCollectionDetails;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Network {
    @JsonProperty("network-id")
    private String networkId;
    @JsonProperty("network-name")
    private String networkName;
    @JsonProperty("network-type")
    private String networkType;
    @JsonProperty("network-role")
    private String networkRole;
    @JsonProperty("network-technology")
    private String networkTechnology;
    @JsonProperty("is-bound-to-vpn")
    private Boolean isBoundToVpn;
    @JsonProperty("resource-version")
    private String resourceVersion;
    @JsonProperty("is-provider-network")
    private Boolean isProviderNetwork;
    @JsonProperty("is-shared-network")
    private Boolean isSharedNetwork;
    @JsonProperty("is-external-network")
    private Boolean isExternalNetwork;
    @JsonProperty("relationship-list")
    private RelationshipList relationshipList;


    @JsonProperty("network-id")
    public String getNetworkId() {
        return networkId;
    }

    @JsonProperty("network-id")
    public void setNetworkId(String networkId) {
        this.networkId = networkId;
    }

    @JsonProperty("network-name")
    public String getNetworkName() {
        return networkName;
    }

    @JsonProperty("network-name")
    public void setNetworkName(String networkName) {
        this.networkName = networkName;
    }

    @JsonProperty("network-type")
    public String getNetworkType() {
        return networkType;
    }

    @JsonProperty("network-type")
    public void setNetworkType(String networkType) {
        this.networkType = networkType;
    }

    @JsonProperty("network-role")
    public String getNetworkRole() {
        return networkRole;
    }

    @JsonProperty("network-role")
    public void setNetworkRole(String networkRole) {
        this.networkRole = networkRole;
    }

    @JsonProperty("network-technology")
    public String getNetworkTechnology() {
        return networkTechnology;
    }

    @JsonProperty("network-technology")
    public void setNetworkTechnology(String networkTechnology) {
        this.networkTechnology = networkTechnology;
    }

    @JsonProperty("is-bound-to-vpn")
    public Boolean getIsBoundToVpn() {
        return isBoundToVpn;
    }

    @JsonProperty("is-bound-to-vpn")
    public void setIsBoundToVpn(Boolean isBoundToVpn) {
        this.isBoundToVpn = isBoundToVpn;
    }

    @JsonProperty("resource-version")
    public String getResourceVersion() {
        return resourceVersion;
    }

    @JsonProperty("resource-version")
    public void setResourceVersion(String resourceVersion) {
        this.resourceVersion = resourceVersion;
    }

    @JsonProperty("is-provider-network")
    public Boolean getIsProviderNetwork() {
        return isProviderNetwork;
    }

    @JsonProperty("is-provider-network")
    public void setIsProviderNetwork(Boolean isProviderNetwork) {
        this.isProviderNetwork = isProviderNetwork;
    }

    @JsonProperty("is-shared-network")
    public Boolean getIsSharedNetwork() {
        return isSharedNetwork;
    }

    @JsonProperty("is-shared-network")
    public void setIsSharedNetwork(Boolean isSharedNetwork) {
        this.isSharedNetwork = isSharedNetwork;
    }

    @JsonProperty("is-external-network")
    public Boolean getIsExternalNetwork() {
        return isExternalNetwork;
    }

    @JsonProperty("is-external-network")
    public void setIsExternalNetwork(Boolean isExternalNetwork) {
        this.isExternalNetwork = isExternalNetwork;
    }

    @JsonProperty("relationship-list")
    public RelationshipList getRelationshipList() {
        return relationshipList;
    }

    @JsonProperty("relationship-list")
    public void setRelationshipList(RelationshipList relationshipList) {
        this.relationshipList = relationshipList;
    }

}