Update db process part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nslcm / bo / entity / PortResource.java
1 /*
2  * Copyright 2016-2017, Nokia 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.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.entity;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class PortResource {
21         
22         @JsonProperty("vimid")
23         private String vimid;
24         @JsonProperty("resourceid")
25         private String resourceid;
26         @JsonProperty("resourceName")
27         private String resourceName;
28         @JsonProperty("tenant")
29         private String tenant;
30         @JsonProperty("ipAddress")
31         private String ipAddress;
32         @JsonProperty("macAddress")
33         private String macAddress;
34         @JsonProperty("instId")
35         private String instId;
36         
37         public String getVimid() {
38                 return vimid;
39         }
40         public void setVimid(String vimid) {
41                 this.vimid = vimid;
42         }
43         public String getResourceid() {
44                 return resourceid;
45         }
46         public void setResourceid(String resourceid) {
47                 this.resourceid = resourceid;
48         }
49         public String getResourceName() {
50                 return resourceName;
51         }
52         public void setResourceName(String resourceName) {
53                 this.resourceName = resourceName;
54         }
55         public String getTenant() {
56                 return tenant;
57         }
58         public void setTenant(String tenant) {
59                 this.tenant = tenant;
60         }
61         public String getIpAddress() {
62                 return ipAddress;
63         }
64         public void setIpAddress(String ipAddress) {
65                 this.ipAddress = ipAddress;
66         }
67         public String getMacAddress() {
68                 return macAddress;
69         }
70         public void setMacAddress(String macAddress) {
71                 this.macAddress = macAddress;
72         }
73         public String getInstId() {
74                 return instId;
75         }
76         public void setInstId(String instId) {
77                 this.instId = instId;
78         }
79         
80         
81 }