/*- * ============LICENSE_START======================================================= * openECOMP : SDN-C * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights * reserved. * ================================================================================ * 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.openecomp.sdnc.sli.aai.data.v1507; import java.util.HashMap; import java.util.Map; import javax.annotation.Generated; import com.fasterxml.jackson.annotation.JsonAnyGetter; import com.fasterxml.jackson.annotation.JsonAnySetter; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyOrder; @JsonInclude(JsonInclude.Include.NON_NULL) @Generated("org.jsonschema2pojo") @JsonPropertyOrder({ "addrId", "addr", "version", "type", "networkName" }) public class IpAddress { @JsonProperty("addrId") private String addrId; @JsonProperty("addr") private String addr; @JsonProperty("version") private String version; @JsonProperty("type") private String type; @JsonProperty("networkName") private String networkName; @JsonIgnore private Map additionalProperties = new HashMap(); /** * * @return * The addrId */ @JsonProperty("addrId") public String getAddrId() { return addrId; } /** * * @param addrId * The addrId */ @JsonProperty("addrId") public void setAddrId(String addrId) { this.addrId = addrId; } /** * * @return * The addr */ @JsonProperty("addr") public String getAddr() { return addr; } /** * * @param addr * The addr */ @JsonProperty("addr") public void setAddr(String addr) { this.addr = addr; } /** * * @return * The version */ @JsonProperty("version") public String getVersion() { return version; } /** * * @param version * The version */ @JsonProperty("version") public void setVersion(String version) { this.version = version; } /** * * @return * The type */ @JsonProperty("type") public String getType() { return type; } /** * * @param type * The type */ @JsonProperty("type") public void setType(String type) { this.type = type; } /** * * @return * The networkName */ @JsonProperty("networkName") public String getNetworkName() { return networkName; } /** * * @param networkName * The networkName */ @JsonProperty("networkName") public void setNetworkName(String networkName) { this.networkName = networkName; } @JsonAnyGetter public Map getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } }