Define attributes about PNF
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / PnfRegisterInfo.java
1 /**
2  * Copyright 2018 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.rest;
17
18 public class PnfRegisterInfo {
19
20     private String pnfId;
21
22     private String userLabel;
23
24     private String subnetId;
25
26     private String neId;
27
28     private String managementType;
29
30     private String vendor;
31
32     private String pnfdId;
33
34     private String emsId;
35
36     private String lattitude;
37
38     private String longitude;
39
40     public String getPnfId() {
41         return pnfId;
42     }
43
44     public void setPnfId(String pnfId) {
45         this.pnfId = pnfId;
46     }
47
48     public String getUserLabel() {
49         return userLabel;
50     }
51
52     public void setUserLabel(String userLabel) {
53         this.userLabel = userLabel;
54     }
55
56     public String getSubnetId() {
57         return subnetId;
58     }
59
60     public void setSubnetId(String subnetId) {
61         this.subnetId = subnetId;
62     }
63
64     public String getNeId() {
65         return neId;
66     }
67
68     public void setNeId(String neId) {
69         this.neId = neId;
70     }
71
72     public String getManagementType() {
73         return managementType;
74     }
75
76     public void setManagementType(String managementType) {
77         this.managementType = managementType;
78     }
79
80     public String getVendor() {
81         return vendor;
82     }
83
84     public void setVendor(String vendor) {
85         this.vendor = vendor;
86     }
87
88     public String getPnfdId() {
89         return pnfdId;
90     }
91
92     public void setPnfdId(String pnfdId) {
93         this.pnfdId = pnfdId;
94     }
95
96     public String getEmsId() {
97         return emsId;
98     }
99
100     public void setEmsId(String emsId) {
101         this.emsId = emsId;
102     }
103
104     public String getLattitude() {
105         return lattitude;
106     }
107
108     public void setLattitude(String lattitude) {
109         this.lattitude = lattitude;
110     }
111
112     public String getLongitude() {
113         return longitude;
114     }
115
116     public void setLongitude(String longitude) {
117         this.longitude = longitude;
118     }
119 }