Initial OpenECOMP MSO commit
[so.git] / adapters / mso-adapter-utils / src / main / java / org / openecomp / mso / openstack / utils / MsoTenantUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.logger.MsoAlarmLogger;
32 import org.openecomp.mso.logger.MsoLogger;
33 import org.openecomp.mso.logger.MessageEnum;
34 import org.openecomp.mso.openstack.beans.MsoTenant;
35 import org.openecomp.mso.openstack.exceptions.MsoAdapterException;
36 import org.openecomp.mso.openstack.exceptions.MsoCloudSiteNotFound;
37 import org.openecomp.mso.openstack.exceptions.MsoException;
38 import org.openecomp.mso.openstack.exceptions.MsoOpenstackException;
39 import org.openecomp.mso.openstack.exceptions.MsoTenantAlreadyExists;
40 import org.openecomp.mso.properties.MsoJavaProperties;
41 import org.openecomp.mso.properties.MsoPropertiesException;
42 import org.openecomp.mso.properties.MsoPropertiesFactory;
43 import com.woorea.openstack.keystone.Keystone;
44
45 public abstract class MsoTenantUtils extends MsoCommonUtils {
46
47     protected CloudConfigFactory cloudConfigFactory;
48         protected MsoPropertiesFactory msoPropFactory;
49         protected static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
50         protected MsoJavaProperties msoProps;
51     protected CloudConfig cloudConfig;
52
53     public MsoTenantUtils (String msoPropID) {
54         cloudConfigFactory = new CloudConfigFactory();
55         msoPropFactory = new MsoPropertiesFactory();
56         cloudConfig = cloudConfigFactory.getCloudConfig ();
57
58         LOGGER.debug("msoTenantUtils:" + msoPropID);
59                 
60         try {
61                         msoProps = msoPropFactory.getMsoJavaProperties (msoPropID);
62                 } catch (MsoPropertiesException e) {
63                         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);
64                 }
65     }
66
67     public abstract String createTenant (String tenantName, String cloudSiteId, Map <String, String> metadata, boolean backout) 
68                 throws MsoException;
69        
70     public abstract MsoTenant queryTenant (String tenantId, String cloudSiteId) 
71                 throws MsoException, MsoCloudSiteNotFound;
72     
73     public abstract MsoTenant queryTenantByName (String tenantName, String cloudSiteId) 
74                 throws MsoException, MsoCloudSiteNotFound;
75
76     public abstract boolean deleteTenant (String tenantId, String cloudSiteId) 
77                 throws MsoException;
78     
79 }