Change the header to SO
[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.io.Serializable;
25 import java.util.Calendar;
26 import java.util.HashMap;
27 import java.util.Map;
28
29 import org.openecomp.mso.cloud.CloudConfig;
30 import org.openecomp.mso.cloud.CloudConfigFactory;
31 import org.openecomp.mso.cloud.CloudIdentity;
32 import org.openecomp.mso.logger.MsoAlarmLogger;
33 import org.openecomp.mso.logger.MsoLogger;
34 import org.openecomp.mso.logger.MessageEnum;
35 import org.openecomp.mso.openstack.beans.MsoTenant;
36 import org.openecomp.mso.openstack.exceptions.MsoAdapterException;
37 import org.openecomp.mso.openstack.exceptions.MsoCloudSiteNotFound;
38 import org.openecomp.mso.openstack.exceptions.MsoException;
39 import org.openecomp.mso.openstack.exceptions.MsoOpenstackException;
40 import org.openecomp.mso.openstack.exceptions.MsoTenantAlreadyExists;
41 import org.openecomp.mso.properties.MsoJavaProperties;
42 import org.openecomp.mso.properties.MsoPropertiesException;
43 import org.openecomp.mso.properties.MsoPropertiesFactory;
44 import com.woorea.openstack.keystone.Keystone;
45
46 public abstract class MsoTenantUtils extends MsoCommonUtils {
47
48     protected CloudConfigFactory cloudConfigFactory;
49         protected MsoPropertiesFactory msoPropFactory;
50         protected static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
51         protected MsoJavaProperties msoProps;
52     protected CloudConfig cloudConfig;
53
54     public MsoTenantUtils (String msoPropID) {
55         cloudConfigFactory = new CloudConfigFactory();
56         msoPropFactory = new MsoPropertiesFactory();
57         cloudConfig = cloudConfigFactory.getCloudConfig ();
58
59         LOGGER.debug("msoTenantUtils:" + msoPropID);
60                 
61         try {
62                         msoProps = msoPropFactory.getMsoJavaProperties (msoPropID);
63                 } catch (MsoPropertiesException e) {
64                         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);
65                 }
66     }
67
68     public abstract String createTenant (String tenantName, String cloudSiteId, Map <String, String> metadata, boolean backout) 
69                 throws MsoException;
70        
71     public abstract MsoTenant queryTenant (String tenantId, String cloudSiteId) 
72                 throws MsoException, MsoCloudSiteNotFound;
73     
74     public abstract MsoTenant queryTenantByName (String tenantName, String cloudSiteId) 
75                 throws MsoException, MsoCloudSiteNotFound;
76
77     public abstract boolean deleteTenant (String tenantId, String cloudSiteId) 
78                 throws MsoException;
79
80     public abstract String getKeystoneUrl (String regionId, String msoPropID, CloudIdentity cloudIdentity)
81                 throws MsoException;
82
83 }