blob: 517111a851e6e08ab9fc067eb09142791a5bc2e8 [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.AaiGetPnfs;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.onap.osam.aai.model.AaiRelationResponse;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Pnf extends AaiRelationResponse {
@JsonProperty("pnf-name")
public String pnfName;
@JsonProperty("pnf-name2")
public String pnfName2;
@JsonProperty("pnf-name2-source")
public String pnfName2Source;
@JsonProperty("pnf-id")
public String pnfId;
@JsonProperty("equip-type")
public String equipType;
@JsonProperty("equip-vendor")
public String equipVendor;
@JsonProperty("equip-model")
public String equipModel;
public String getPnfName() {
return pnfName;
}
public void setPnfName(String pnfName) {
this.pnfName = pnfName;
}
public String getEquipType() {
return equipType;
}
public void setEquipType(String equipType) {
this.equipType = equipType;
}
public String getEquipVendor() {
return equipVendor;
}
public void setEquipVendor(String equipVendor) {
this.equipVendor = equipVendor;
}
public String getPnfName2() {
return pnfName2;
}
public void setPnfName2(String pnfName2) {
this.pnfName2 = pnfName2;
}
public String getPnfId() {
return pnfId;
}
public void setPnfId(String pnfId) {
this.pnfId = pnfId;
}
public String getEquipModel() {
return equipModel;
}
public void setEquipModel(String equipModel) {
this.equipModel = equipModel;
}
public String getPnfName2Source() { return pnfName2Source; }
public void setPnfName2Source(String pnfName2Source) { this.pnfName2Source = pnfName2Source; }
}