87ff2582ded1561e5036d4d734977ce3a4ac5071
[so.git] /
1 /*
2  * ============LICENSE_START==========================================
3  * ===================================================================
4  * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END============================================
18  *
19  * ECOMP and OpenECOMP are trademarks
20  * and service marks of AT&T Intellectual Property.
21  *
22  */
23
24 package org.openecomp.mso.cloud.authentication.wrappers;
25
26 import org.openecomp.mso.cloud.CloudIdentity;
27 import org.openecomp.mso.cloud.authentication.AuthenticationWrapper;
28 import org.openecomp.mso.cloud.authentication.models.RackspaceAuthentication;
29
30 import com.woorea.openstack.keystone.model.Authentication;
31
32 /**
33  * This class implements the authentication wrapper for Rackspace Authentication.
34  *
35  */
36 public class RackspaceAPIKeyWrapper extends AuthenticationWrapper {
37
38         /**
39          * 
40          */
41         public RackspaceAPIKeyWrapper() {
42                 // TODO Auto-generated constructor stub
43         }
44
45         /* (non-Javadoc)
46          * @see org.openecomp.mso.cloud.authentication.AuthenticationWrapper#getAuthentication(org.openecomp.mso.cloud.CloudIdentity)
47          */
48         @Override
49         public Authentication getAuthentication(CloudIdentity cloudIdentity) {
50                 if (cloudIdentity == null) {
51                         throw new IllegalArgumentException("Provided cloud identity is null, cannot extract username and password");
52                 }
53                 return new RackspaceAuthentication (cloudIdentity.getMsoId (), cloudIdentity.getMsoPass ());
54         }
55 }