Define AAI Vim register related API
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / AuthInfoItem.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 AuthInfoItem {
19   
20   private String cloudDomain;
21   
22   private String userName;
23   
24   private String password;
25   
26   private String authUrl;
27   
28   private String sslCacert;
29
30   private String sslInsecure;
31
32   public String getCloudDomain() {
33     return cloudDomain;
34   }
35
36   public void setCloudDomain(String cloudDomain) {
37     this.cloudDomain = cloudDomain;
38   }
39
40   public String getUserName() {
41     return userName;
42   }
43
44   public void setUserName(String userName) {
45     this.userName = userName;
46   }
47
48   public String getPassword() {
49     return password;
50   }
51
52   public void setPassword(String password) {
53     this.password = password;
54   }
55
56   public String getAuthUrl() {
57     return authUrl;
58   }
59
60   public void setAuthUrl(String authUrl) {
61     this.authUrl = authUrl;
62   }
63
64   public String getSslCacert() {
65     return sslCacert;
66   }
67
68   public void setSslCacert(String sslCacert) {
69     this.sslCacert = sslCacert;
70   }
71
72   public String getSslInsecure() {
73     return sslInsecure;
74   }
75
76   public void setSslInsecure(String sslInsecure) {
77     this.sslInsecure = sslInsecure;
78   }
79 }