2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2019 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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.so.adapters.inventory.delete;
 
  23 import org.onap.so.client.aai.AAIResourcesClient;
 
  24 import org.onap.so.cloud.CloudConfig;
 
  25 import org.onap.so.cloud.resource.beans.CloudInformation;
 
  26 import org.onap.so.db.catalog.beans.CloudIdentity;
 
  27 import org.onap.so.db.catalog.beans.CloudSite;
 
  28 import org.onap.so.heatbridge.HeatBridgeApi;
 
  29 import org.onap.so.heatbridge.HeatBridgeImpl;
 
  30 import org.onap.so.openstack.exceptions.MsoCloudSiteNotFound;
 
  31 import org.slf4j.Logger;
 
  32 import org.slf4j.LoggerFactory;
 
  33 import org.springframework.beans.factory.annotation.Autowired;
 
  34 import org.springframework.core.env.Environment;
 
  35 import org.springframework.stereotype.Component;
 
  38 public class DeleteAAIInventory {
 
  40     private static final Logger logger = LoggerFactory.getLogger(DeleteAAIInventory.class);
 
  42     private AAIResourcesClient aaiClient;
 
  45     protected CloudConfig cloudConfig;
 
  48     protected Environment env;
 
  50     public void heatbridge(CloudInformation cloudInformation, boolean dryrun) {
 
  53                 logger.debug("Heatbridge delete executing");
 
  55                 CloudSite cloudSite = cloudConfig.getCloudSite(cloudInformation.getRegionId())
 
  56                         .orElseThrow(() -> new MsoCloudSiteNotFound(cloudInformation.getRegionId()));
 
  57                 CloudIdentity cloudIdentity = cloudSite.getIdentityService();
 
  58                 HeatBridgeApi heatBridgeClient = new HeatBridgeImpl(new AAIResourcesClient(), cloudIdentity,
 
  59                         cloudInformation.getOwner(), cloudInformation.getRegionId(), cloudSite.getRegionId(),
 
  60                         cloudInformation.getTenantId());
 
  61                 heatBridgeClient.authenticate();
 
  62                 heatBridgeClient.deleteVfModuleData(cloudInformation.getVnfId(), cloudInformation.getVfModuleId());
 
  64         } catch (Exception ex) {
 
  65             logger.debug("Heatbrige failed for stackId: " + cloudInformation.getTemplateInstanceId(), ex);
 
  69     protected AAIResourcesClient getAaiClient() {
 
  70         if (aaiClient == null)
 
  71             return new AAIResourcesClient();
 
  76     protected void setAaiClient(AAIResourcesClient aaiResource) {
 
  77         aaiClient = aaiResource;