d4d5b7c1e0316525ef2361d9ffc4d8a2297fb51e
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / entity / OpenStackAccessInfoV2.java
1 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity;
2
3 /*
4 * Copyright 2016-2017 Nokia Corporation
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *     http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 import com.fasterxml.jackson.annotation.JsonProperty;
19
20 public class OpenStackAccessInfoV2 {
21
22         @JsonProperty("username")
23         private String username;
24         
25         @JsonProperty("password")
26         private String password;
27         
28         @JsonProperty("region")
29         private String region;
30         
31         @JsonProperty("tenant")
32         private String tenant;
33
34
35         public String getUsername() {
36                 return username;
37         }
38
39         public void setUsername(String username) {
40                 this.username = username;
41         }
42
43         public String getPassword() {
44                 return password;
45         }
46
47         public void setPassword(String password) {
48                 this.password = password;
49         }
50
51         public String getRegion() {
52                 return region;
53         }
54
55         public void setRegion(String region) {
56                 this.region = region;
57         }
58
59         public String getTenant() {
60                 return tenant;
61         }
62
63         public void setTenant(String tenant) {
64                 this.tenant = tenant;
65         }
66         
67         
68         
69
70 }