Containerization feature of SO
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / 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.onap.so.openstack.utils;
22
23
24 import java.util.Map;
25
26 import org.onap.so.cloud.CloudConfig;
27 import org.onap.so.cloud.CloudIdentity;
28 import org.onap.so.logger.MsoLogger;
29 import org.onap.so.openstack.beans.MsoTenant;
30 import org.onap.so.openstack.exceptions.MsoCloudSiteNotFound;
31 import org.onap.so.openstack.exceptions.MsoException;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Component;
34
35 @Component
36 public abstract class MsoTenantUtils extends MsoCommonUtils {
37
38         protected static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA, MsoTenantUtils.class);
39         
40         @Autowired
41     protected CloudConfig cloudConfig;
42
43     public abstract String createTenant (String tenantName, String cloudSiteId, Map <String, String> metadata, boolean backout) 
44                 throws MsoException;
45        
46     public abstract MsoTenant queryTenant (String tenantId, String cloudSiteId) 
47                 throws MsoException, MsoCloudSiteNotFound;
48     
49     public abstract MsoTenant queryTenantByName (String tenantName, String cloudSiteId) 
50                 throws MsoException, MsoCloudSiteNotFound;
51
52     public abstract boolean deleteTenant (String tenantId, String cloudSiteId) 
53                 throws MsoException;
54
55     public abstract String getKeystoneUrl (String regionId, CloudIdentity cloudIdentity)
56                 throws MsoException;
57
58 }