7cf41dbac91d9e82ed9a219e1d3ad51929ffef96
[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  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.openstack.utils;
24
25
26 import java.util.Map;
27 import org.onap.so.cloud.CloudConfig;
28 import org.onap.so.db.catalog.beans.CloudIdentity;
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     @Autowired
39     protected CloudConfig cloudConfig;
40
41     public abstract String createTenant (String tenantName, String cloudSiteId, Map <String, String> metadata, boolean backout) 
42                 throws MsoException;
43        
44     public abstract MsoTenant queryTenant (String tenantId, String cloudSiteId) 
45                 throws MsoException, MsoCloudSiteNotFound;
46     
47     public abstract MsoTenant queryTenantByName (String tenantName, String cloudSiteId) 
48                 throws MsoException, MsoCloudSiteNotFound;
49
50     public abstract boolean deleteTenant (String tenantId, String cloudSiteId) 
51                 throws MsoException;
52
53     public abstract String getKeystoneUrl (String regionId, CloudIdentity cloudIdentity)
54                 throws MsoException;
55
56 }