ffd7201fb3197947476c69c288091482c42d450f
[vfc/nfvo/driver/vnfm/svnfm.git] /
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("tenant")
29         private String tenant;
30
31
32         public String getUsername() {
33                 return username;
34         }
35
36         public void setUsername(String username) {
37                 this.username = username;
38         }
39
40         public String getPassword() {
41                 return password;
42         }
43
44         public void setPassword(String password) {
45                 this.password = password;
46         }
47
48         public String getTenant() {
49                 return tenant;
50         }
51
52         public void setTenant(String tenant) {
53                 this.tenant = tenant;
54         }
55         
56         
57         
58
59 }