Modify Dockerfile for vfc-svnfm
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / entity / OPENSTACK_V2_INFO.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.cbam.bo.entity;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class OPENSTACK_V2_INFO {
21
22         @JsonProperty("vimInfoType")
23         private VimInfoType vimInfoType;
24         @JsonProperty("interfaceInfo")
25         private EndpointInfo interfaceInfo;
26         @JsonProperty("id")
27         private String id;
28         @JsonProperty("accessInfo")
29         private OpenStackAccessInfoV2 accessInfo;
30         public VimInfoType getVimInfoType() {
31                 return vimInfoType;
32         }
33         public void setVimInfoType(VimInfoType vimInfoType) {
34                 this.vimInfoType = vimInfoType;
35         }
36         public EndpointInfo getInterfaceInfo() {
37                 return interfaceInfo;
38         }
39         public void setInterfaceInfo(EndpointInfo interfaceInfo) {
40                 this.interfaceInfo = interfaceInfo;
41         }
42         public String getId() {
43                 return id;
44         }
45         public void setId(String id) {
46                 this.id = id;
47         }
48         public OpenStackAccessInfoV2 getAccessInfo() {
49                 return accessInfo;
50         }
51         public void setAccessInfo(OpenStackAccessInfoV2 accessInfo) {
52                 this.accessInfo = accessInfo;
53         }
54         
55         
56         
57
58 }