Replaced all tabs with spaces in java and pom.xml
[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 import com.fasterxml.jackson.annotation.JsonIgnore;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26 import com.fasterxml.jackson.annotation.JsonRootName;
27 import com.woorea.openstack.keystone.model.Authentication;
28
29 @JsonRootName("auth")
30 public class RackspaceAuthentication extends Authentication {
31
32     /**
33      * 
34      */
35     private static final long serialVersionUID = 5451283386875662918L;
36
37     @JsonIgnore
38     private String tenantId;
39
40     @JsonIgnore
41     private String tenantName;
42
43     public static final class Token implements Serializable {
44
45         /**
46          * 
47          */
48         private static final long serialVersionUID = -4448875265818207908L;
49         private String username;
50         private String apiKey;
51
52         /**
53          * @return the username
54          */
55         public String getUsername() {
56             return username;
57         }
58
59         /**
60          * @param username the username to set
61          */
62         public void setUsername(String username) {
63             this.username = username;
64         }
65
66         /**
67          * @return the apiKey
68          */
69         public String getApiKey() {
70             return apiKey;
71         }
72
73         /**
74          * @param apiKey the apiKey to set
75          */
76         public void setApiKey(String apiKey) {
77             this.apiKey = apiKey;
78         }
79     }
80
81     @JsonProperty("RAX-KSKEY:apiKeyCredentials")
82     private Token token = new Token();
83
84     public RackspaceAuthentication(String username, String apiKey) {
85         this.token.username = username;
86         this.token.apiKey = apiKey;
87
88     }
89
90     /**
91      * @return the token
92      */
93     public Token getToken() {
94         return token;
95     }
96
97     /**
98      * @param token the token to set
99      */
100     public void setToken(Token token) {
101         this.token = token;
102     }
103
104 }