Containerization feature of SO
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / cloud / authentication / models / RackspaceAuthentication.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.cloud.authentication.models;
22
23 import java.io.Serializable;
24
25 import com.fasterxml.jackson.annotation.JsonIgnore;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import com.fasterxml.jackson.annotation.JsonRootName;
28 import com.woorea.openstack.keystone.model.Authentication;
29
30 @JsonRootName("auth")
31 public class RackspaceAuthentication extends Authentication {
32                 
33         /**
34          * 
35          */
36         private static final long serialVersionUID = 5451283386875662918L;
37
38         @JsonIgnore
39         private String tenantId;
40         
41         @JsonIgnore
42         private String tenantName;
43         
44         public static final class Token implements Serializable{
45                 
46                 /**
47                  * 
48                  */
49                 private static final long serialVersionUID = -4448875265818207908L;
50                 private String username;
51                 private String apiKey;
52
53                 /**
54                  * @return the username
55                  */
56                 public String getUsername() {
57                         return username;
58                 }
59                 /**
60                  * @param username the username to set
61                  */
62                 public void setUsername(String username) {
63                         this.username = username;
64                 }
65                 /**
66                  * @return the apiKey
67                  */
68                 public String getApiKey() {
69                         return apiKey;
70                 }
71                 /**
72                  * @param apiKey the apiKey to set
73                  */
74                 public void setApiKey(String apiKey) {
75                         this.apiKey = apiKey;
76                 }
77         }
78         
79         @JsonProperty("RAX-KSKEY:apiKeyCredentials")
80         private Token token = new Token();
81         
82         public RackspaceAuthentication (String username, String apiKey) {
83                 this.token.username = username;
84                 this.token.apiKey = apiKey;
85         
86         }
87
88         /**
89          * @return the token
90          */
91         public Token getToken() {
92                 return token;
93         }
94
95         /**
96          * @param token the token to set
97          */
98         public void setToken(Token token) {
99                 this.token = token;
100         }
101         
102 }