Add the unit test for thirdpartySDNC management.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / VimAuthInfo.java
1 /**
2  * Copyright 2017 ZTE 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.aai.esr.entity.rest;
17
18 public class VimAuthInfo {
19   
20   private String cloudDomain;
21   
22   private String userName;
23   
24   private String password;
25   
26   private String authUrl;
27   
28   private String defaultTenant;
29   
30   private String sslCacert;
31
32   private Boolean sslInsecure;
33
34   public String getCloudDomain() {
35     return cloudDomain;
36   }
37
38   public void setCloudDomain(String cloudDomain) {
39     this.cloudDomain = cloudDomain;
40   }
41
42   public String getUserName() {
43     return userName;
44   }
45
46   public void setUserName(String userName) {
47     this.userName = userName;
48   }
49
50   public String getPassword() {
51     return password;
52   }
53
54   public void setPassword(String password) {
55     this.password = password;
56   }
57
58   public String getAuthUrl() {
59     return authUrl;
60   }
61
62   public void setAuthUrl(String authUrl) {
63     this.authUrl = authUrl;
64   }
65
66   public String getSslCacert() {
67     return sslCacert;
68   }
69
70   public void setSslCacert(String sslCacert) {
71     this.sslCacert = sslCacert;
72   }
73
74   public Boolean getSslInsecure() {
75     return sslInsecure;
76   }
77
78   public void setSslInsecure(Boolean sslInsecure) {
79     this.sslInsecure = sslInsecure;
80   }
81
82   public String getDefaultTenant() {
83     return defaultTenant;
84   }
85
86   public void setDefaultTenant(String defaultTenant) {
87     this.defaultTenant = defaultTenant;
88   }
89
90 }