2 * ============LICENSE_START=======================================================
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
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.bpmn.infrastructure.namingservice.tasks;
24 import org.onap.so.bpmn.common.BuildingBlockExecution;
25 import org.onap.so.bpmn.servicedecomposition.bbobjects.InstanceGroup;
26 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
27 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
28 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
29 import org.onap.so.client.exception.ExceptionBuilder;
30 import org.onap.so.client.namingservice.NamingRequestObject;
31 import org.onap.so.client.orchestration.NamingServiceResources;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Component;
36 public class NamingServiceDeleteTasks {
39 private ExceptionBuilder exceptionUtil;
41 private ExtractPojosForBB extractPojosForBB;
44 private NamingServiceResources namingServiceResources;
46 public void deleteInstanceGroupName(BuildingBlockExecution execution) throws Exception {
47 InstanceGroup instanceGroup = extractPojosForBB.extractByKey(execution, ResourceKey.INSTANCE_GROUP_ID);
50 namingServiceResources.deleteInstanceGroupName(instanceGroup);
51 } catch (Exception ex) {
52 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
56 public void deleteServiceInstanceName(BuildingBlockExecution execution) throws Exception {
57 ServiceInstance serviceInstance = extractPojosForBB.extractByKey(execution, ResourceKey.SERVICE_INSTANCE_ID);
58 NamingRequestObject namingRequestObject = new NamingRequestObject();
59 namingRequestObject.setExternalKeyValue(serviceInstance.getServiceInstanceId());
61 namingServiceResources.deleteServiceInstanceName(namingRequestObject);
62 } catch (Exception ex) {
63 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);