Update db process part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / vnfmdriver / bo / entity / VimInfo.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
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.vnfmdriver.bo.entity;
18
19 import java.util.List;
20
21 import com.fasterxml.jackson.annotation.JsonProperty;
22
23 public class VimInfo {
24         @JsonProperty("vimInfoId")
25         private String vimInfoId;
26         
27         @JsonProperty("vimId")
28         private String vimId;
29         
30         @JsonProperty("interfaceInfo")
31         private List<InterfaceInfo> interfaceInfo;
32         
33         @JsonProperty("accessInfo")
34         private List<AccessInfo> accessInfo;
35         
36         @JsonProperty("interfaceEndpoint")
37         private String interfaceEndpoint;
38
39         public String getVimInfoId() {
40                 return vimInfoId;
41         }
42
43         public void setVimInfoId(String vimInfoId) {
44                 this.vimInfoId = vimInfoId;
45         }
46
47         public String getVimId() {
48                 return vimId;
49         }
50
51         public void setVimId(String vimId) {
52                 this.vimId = vimId;
53         }
54
55         
56
57         public List<InterfaceInfo> getInterfaceInfo() {
58                 return interfaceInfo;
59         }
60
61         public void setInterfaceInfo(List<InterfaceInfo> interfaceInfo) {
62                 this.interfaceInfo = interfaceInfo;
63         }
64
65         public List<AccessInfo> getAccessInfo() {
66                 return accessInfo;
67         }
68
69         public void setAccessInfo(List<AccessInfo> accessInfo) {
70                 this.accessInfo = accessInfo;
71         }
72
73         public String getInterfaceEndpoint() {
74                 return interfaceEndpoint;
75         }
76
77         public void setInterfaceEndpoint(String interfaceEndpoint) {
78                 this.interfaceEndpoint = interfaceEndpoint;
79         }
80         
81         
82         
83
84 }