Replace explicit type with dimond type
[so.git] / adapters / mso-adapter-utils / src / main / java / org / openecomp / mso / openstack / utils / MsoTenantUtils.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.openecomp.mso.openstack.utils;
22
23
24 import java.util.Map;
25 import org.openecomp.mso.cloud.CloudConfig;
26 import org.openecomp.mso.cloud.CloudConfigFactory;
27 import org.openecomp.mso.cloud.CloudIdentity;
28 import org.openecomp.mso.logger.MessageEnum;
29 import org.openecomp.mso.logger.MsoLogger;
30 import org.openecomp.mso.openstack.beans.MsoTenant;
31 import org.openecomp.mso.openstack.exceptions.MsoCloudSiteNotFound;
32 import org.openecomp.mso.openstack.exceptions.MsoException;
33 import org.openecomp.mso.properties.MsoJavaProperties;
34 import org.openecomp.mso.properties.MsoPropertiesException;
35 import org.openecomp.mso.properties.MsoPropertiesFactory;
36
37 public abstract class MsoTenantUtils extends MsoCommonUtils {
38
39     protected CloudConfigFactory cloudConfigFactory;
40         protected MsoPropertiesFactory msoPropFactory;
41         protected static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
42         protected MsoJavaProperties msoProps;
43     protected CloudConfig cloudConfig;
44
45     public MsoTenantUtils (String msoPropID) {
46         cloudConfigFactory = new CloudConfigFactory();
47         msoPropFactory = new MsoPropertiesFactory();
48         cloudConfig = cloudConfigFactory.getCloudConfig ();
49
50         LOGGER.debug("msoTenantUtils:" + msoPropID);
51                 
52         try {
53                         msoProps = msoPropFactory.getMsoJavaProperties (msoPropID);
54                 } catch (MsoPropertiesException e) {
55                         LOGGER.error (MessageEnum.LOAD_PROPERTIES_FAIL, "Unknown. Mso Properties ID not found in cache: " + msoPropID, "", "", MsoLogger.ErrorCode.DataError, "Exception - Mso Properties ID not found in cache", e);
56                 }
57     }
58
59     public abstract String createTenant (String tenantName, String cloudSiteId, Map <String, String> metadata, boolean backout) 
60                 throws MsoException;
61        
62     public abstract MsoTenant queryTenant (String tenantId, String cloudSiteId) 
63                 throws MsoException, MsoCloudSiteNotFound;
64     
65     public abstract MsoTenant queryTenantByName (String tenantName, String cloudSiteId) 
66                 throws MsoException, MsoCloudSiteNotFound;
67
68     public abstract boolean deleteTenant (String tenantId, String cloudSiteId) 
69                 throws MsoException;
70
71     public abstract String getKeystoneUrl (String regionId, String msoPropID, CloudIdentity cloudIdentity)
72                 throws MsoException;
73
74 }