blob: 65274380d8795d68c195fa160261c816b66698e2 [file] [log] [blame]
/*-
* ============LICENSE_START=======================================================
* OSAM
* ================================================================================
* Copyright (C) 2018 AT&T
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ============LICENSE_END=========================================================
*/
package org.onap.osam.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;
}
}