2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.openecomp.appc.adapter.iaas.impl;
 
  24 import java.util.HashMap;
 
  28  * This class maintains a cache of information by provider, where a provider is identified by both a type and an
 
  29  * identity URL used to connect to that provider.
 
  31  * Providers may be multi-tenant, such as OpenStack, where the available services and resources vary from one tenant to
 
  32  * another. Therefore, the provider cache maintains a cache of tenants and the service catalogs for each, as well as the
 
  33  * credentials used to access the tenants, and a pool of Context objects for each tenant. The context pool allows use of
 
  34  * the CDP abstraction layer to access the services of the provider within the specific tenant.
 
  37 public class ProviderCache {
 
  40      * The type of provider (e.g., OpenStackProvider) used to setup the CDP abstraction layer and load the appropriate
 
  43     private String providerType;
 
  46      * The URL of the provider's identity service or whatever service is used to login and authenticate to the provider
 
  48     private String identityURL;
 
  51      * A string used to identify the provider instance
 
  53     private String providerName;
 
  56      * The map of tenant cache objects by tenant id
 
  58     private Map<String /* tenant id */, TenantCache> tenants = new HashMap<String, TenantCache>();
 
  61      * @return the value of providerType
 
  63     public String getProviderType() {
 
  68      * This method is called to initialize the provider cache, set up the context pools for each of the tenants,
 
  69      * discover all of the regions supported on the provider, and load all of the service catalogs for each provider.
 
  71     public void initialize() {
 
  72         for (Map.Entry<String, TenantCache> entry: tenants.entrySet()) { 
 
  73             entry.getValue().initialize(); 
 
  79      *            the value for providerType
 
  81     public void setProviderType(String providerType) {
 
  82         this.providerType = providerType;
 
  86      * @return the value of identityURL
 
  88     public String getIdentityURL() {
 
  94      *            the value for identityURL
 
  96     public void setIdentityURL(String identityURL) {
 
  97         this.identityURL = identityURL;
 
 101      * @return the value of providerName
 
 103     public String getProviderName() {
 
 108      * @param providerName
 
 109      *            the value for providerName
 
 111     public void setProviderName(String providerName) {
 
 112         this.providerName = providerName;
 
 116      * @return the value of tenants
 
 118     public Map<String, TenantCache> getTenants() {
 
 123      * This method is a helper to return a specific TenantCache
 
 128     public TenantCache getTenant(String tenantId){        
 
 129         return tenants.get(tenantId);       
 
 132     // Previously there was no way to add additional tenants to the tenant cache
 
 134      * This method is used to add a tenant to the provider cache
 
 139         * @return the new initialized TenantCache or null if unsuccessful
 
 141     public TenantCache addTenant(String tenantId, String tenantName, String userId, String password){
 
 142         if(tenantId != null || tenantName != null && userId != null && password != null){        
 
 143             TenantCache tenant = new TenantCache(this);
 
 144             if(tenantId != null){
 
 145                 tenant.setTenantId(tenantId);
 
 147             if(tenantName != null){
 
 148                 tenant.setTenantName(tenantName);
 
 150             tenant.setUserid(userId);
 
 151             tenant.setPassword(password);
 
 153             if(identityURL != null){
 
 157             if (tenant.isInitialized()) {
 
 158                 tenants.put(tenant.getTenantId(), tenant);