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.tasks.inventory;
 
  23 import org.onap.aaiclient.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.HeatBridgeException;
 
  30 import org.onap.so.heatbridge.HeatBridgeImpl;
 
  31 import org.onap.so.openstack.exceptions.MsoCloudSiteNotFound;
 
  32 import org.slf4j.Logger;
 
  33 import org.slf4j.LoggerFactory;
 
  34 import org.springframework.beans.factory.annotation.Autowired;
 
  35 import org.springframework.core.env.Environment;
 
  36 import org.springframework.stereotype.Component;
 
  39 public class DeleteAAIInventory {
 
  41     private static final Logger logger = LoggerFactory.getLogger(DeleteAAIInventory.class);
 
  43     private AAIResourcesClient aaiClient;
 
  46     protected CloudConfig cloudConfig;
 
  49     protected Environment env;
 
  51     public void heatbridge(CloudInformation cloudInformation) throws MsoCloudSiteNotFound, HeatBridgeException {
 
  52         logger.debug("Heatbridge delete executing");
 
  53         CloudSite cloudSite = cloudConfig.getCloudSite(cloudInformation.getRegionId())
 
  54                 .orElseThrow(() -> new MsoCloudSiteNotFound(cloudInformation.getRegionId()));
 
  55         CloudIdentity cloudIdentity = cloudSite.getIdentityService();
 
  56         HeatBridgeApi heatBridgeClient = new HeatBridgeImpl(new AAIResourcesClient(), cloudIdentity,
 
  57                 cloudInformation.getOwner(), cloudInformation.getRegionId(), cloudSite.getRegionId(),
 
  58                 cloudInformation.getTenantId(), cloudInformation.getNodeType());
 
  59         heatBridgeClient.authenticate();
 
  60         heatBridgeClient.deleteVfModuleData(cloudInformation.getVnfId(), cloudInformation.getVfModuleId());
 
  63     protected AAIResourcesClient getAaiClient() {
 
  64         if (aaiClient == null)
 
  65             return new AAIResourcesClient();
 
  70     protected void setAaiClient(AAIResourcesClient aaiResource) {
 
  71         aaiClient = aaiResource;