blob: 517111a851e6e08ab9fc067eb09142791a5bc2e8 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.aai.model.AaiGetPnfs;
24
25import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
26import com.fasterxml.jackson.annotation.JsonProperty;
27import org.onap.osam.aai.model.AaiRelationResponse;
28
29@JsonIgnoreProperties(ignoreUnknown = true)
30public class Pnf extends AaiRelationResponse {
31
32 @JsonProperty("pnf-name")
33 public String pnfName;
34 @JsonProperty("pnf-name2")
35 public String pnfName2;
36 @JsonProperty("pnf-name2-source")
37 public String pnfName2Source;
38 @JsonProperty("pnf-id")
39 public String pnfId;
40 @JsonProperty("equip-type")
41 public String equipType;
42 @JsonProperty("equip-vendor")
43 public String equipVendor;
44 @JsonProperty("equip-model")
45 public String equipModel;
46
47 public String getPnfName() {
48 return pnfName;
49 }
50
51 public void setPnfName(String pnfName) {
52 this.pnfName = pnfName;
53 }
54
55 public String getEquipType() {
56 return equipType;
57 }
58
59 public void setEquipType(String equipType) {
60 this.equipType = equipType;
61 }
62
63 public String getEquipVendor() {
64 return equipVendor;
65 }
66
67 public void setEquipVendor(String equipVendor) {
68 this.equipVendor = equipVendor;
69 }
70
71 public String getPnfName2() {
72 return pnfName2;
73 }
74
75 public void setPnfName2(String pnfName2) {
76 this.pnfName2 = pnfName2;
77 }
78
79 public String getPnfId() {
80 return pnfId;
81 }
82
83 public void setPnfId(String pnfId) {
84 this.pnfId = pnfId;
85 }
86
87 public String getEquipModel() {
88 return equipModel;
89 }
90
91 public void setEquipModel(String equipModel) {
92 this.equipModel = equipModel;
93 }
94
95 public String getPnfName2Source() { return pnfName2Source; }
96
97 public void setPnfName2Source(String pnfName2Source) { this.pnfName2Source = pnfName2Source; }
98}
99