Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / openstack / utils / MsoTenantUtilsFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.openstack.utils;
24
25 import org.onap.so.cloud.CloudConfig;
26 import org.onap.so.db.catalog.beans.CloudSite;
27 import org.onap.so.db.catalog.beans.ServerType;
28 import org.onap.so.openstack.exceptions.MsoCloudSiteNotFound;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.stereotype.Component;
33
34 @Component
35 public class MsoTenantUtilsFactory {
36
37     protected static Logger logger = LoggerFactory.getLogger(MsoTenantUtilsFactory.class);
38     @Autowired
39     protected CloudConfig cloudConfig;
40     @Autowired
41     protected MsoKeystoneUtils keystoneUtils;
42     @Autowired
43     protected MsoKeystoneV3Utils keystoneV3Utils;
44
45     // based on Cloud IdentityServerType returns ORM or KEYSTONE Utils
46     public MsoTenantUtils getTenantUtils(String cloudSiteId) throws MsoCloudSiteNotFound {
47         CloudSite cloudSite =
48                 cloudConfig.getCloudSite(cloudSiteId).orElseThrow(() -> new MsoCloudSiteNotFound(cloudSiteId));
49
50         return getTenantUtilsByServerType(cloudSite.getIdentityService().getIdentityServerType());
51     }
52
53     public MsoTenantUtils getTenantUtilsByServerType(ServerType serverType) {
54
55         MsoTenantUtils tenantU = null;
56         if (ServerType.KEYSTONE.equals(serverType)) {
57             tenantU = keystoneUtils;
58         } else if (ServerType.KEYSTONE_V3.equals(serverType)) {
59             tenantU = keystoneV3Utils;
60         }
61         return tenantU;
62     }
63 }