507e14e42a0fdfac1150606bd0f28b0b80dffd00
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.onap.so.bpmn.infrastructure.namingservice.tasks;
22
23
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;
34
35 @Component
36 public class NamingServiceDeleteTasks {
37
38     @Autowired
39     private ExceptionBuilder exceptionUtil;
40     @Autowired
41     private ExtractPojosForBB extractPojosForBB;
42
43     @Autowired
44     private NamingServiceResources namingServiceResources;
45
46     public void deleteInstanceGroupName(BuildingBlockExecution execution) throws Exception {
47         InstanceGroup instanceGroup = extractPojosForBB.extractByKey(execution, ResourceKey.INSTANCE_GROUP_ID);
48
49         try {
50             namingServiceResources.deleteInstanceGroupName(instanceGroup);
51         } catch (Exception ex) {
52             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
53         }
54     }
55
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());
60         try {
61             namingServiceResources.deleteServiceInstanceName(namingRequestObject);
62         } catch (Exception ex) {
63             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
64         }
65     }
66
67 }