Merge "Reorder modifiers"
[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.CloudConfigFactory;
26 import org.openecomp.mso.cloud.CloudIdentity;
27 import org.openecomp.mso.logger.MessageEnum;
28 import org.openecomp.mso.logger.MsoLogger;
29 import org.openecomp.mso.openstack.beans.MsoTenant;
30 import org.openecomp.mso.openstack.exceptions.MsoCloudSiteNotFound;
31 import org.openecomp.mso.openstack.exceptions.MsoException;
32 import org.openecomp.mso.properties.MsoJavaProperties;
33 import org.openecomp.mso.properties.MsoPropertiesException;
34 import org.openecomp.mso.properties.MsoPropertiesFactory;
35
36 public abstract class MsoTenantUtils extends MsoCommonUtils {
37
38     private CloudConfigFactory cloudConfigFactory;
39         protected MsoPropertiesFactory msoPropFactory;
40         protected static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
41         protected MsoJavaProperties msoProps;
42
43     public MsoTenantUtils (String msoPropID, CloudConfigFactory cloudConfigFactory) {
44         this.cloudConfigFactory = cloudConfigFactory;
45         msoPropFactory = new MsoPropertiesFactory();
46
47         LOGGER.debug("msoTenantUtils:" + msoPropID);
48                 
49         try {
50                         msoProps = msoPropFactory.getMsoJavaProperties (msoPropID);
51                 } catch (MsoPropertiesException e) {
52                         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);
53                 }
54     }
55
56     public CloudConfigFactory getCloudConfigFactory() {
57         return cloudConfigFactory;
58     }
59
60     public abstract String createTenant (String tenantName, String cloudSiteId, Map <String, String> metadata, boolean backout) 
61                 throws MsoException;
62        
63     public abstract MsoTenant queryTenant (String tenantId, String cloudSiteId) 
64                 throws MsoException, MsoCloudSiteNotFound;
65     
66     public abstract MsoTenant queryTenantByName (String tenantName, String cloudSiteId) 
67                 throws MsoException, MsoCloudSiteNotFound;
68
69     public abstract boolean deleteTenant (String tenantId, String cloudSiteId) 
70                 throws MsoException;
71
72     public abstract String getKeystoneUrl (String regionId, String msoPropID, CloudIdentity cloudIdentity)
73                 throws MsoException;
74
75 }