22166483b12600758c99d447bfe1ba769eebd7a1
[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.aai;
22
23 import org.camunda.bpm.engine.delegate.DelegateExecution;
24 import org.camunda.bpm.engine.delegate.JavaDelegate;
25 import org.onap.so.bpmn.common.scripts.ExceptionUtil;
26 import org.onap.aaiclient.client.aai.AAIObjectType;
27 import org.onap.aaiclient.client.aai.entities.uri.AAIResourceUri;
28 import org.onap.aaiclient.client.aai.entities.uri.AAIUriFactory;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32
33 public class AAIDeleteServiceInstance extends AAIResource implements JavaDelegate {
34
35     private static final Logger logger = LoggerFactory.getLogger(AAIDeleteServiceInstance.class);
36
37     private static final String ERROR_MESSAGE =
38             "Exception in Delete Serivce Instance. Service Instance could not be deleted in AAI.";
39
40     ExceptionUtil exceptionUtil = new ExceptionUtil();
41
42     public void execute(DelegateExecution execution) throws Exception {
43         try {
44             String serviceInstanceId = (String) execution.getVariable("serviceInstanceId");
45             AAIResourceUri serviceInstanceURI =
46                     AAIUriFactory.createResourceUri(AAIObjectType.SERVICE_INSTANCE, serviceInstanceId);
47             getAaiClient().delete(serviceInstanceURI);
48             execution.setVariable("GENDS_SuccessIndicator", true);
49         } catch (Exception ex) {
50             logger.error(ERROR_MESSAGE, ex);
51             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ERROR_MESSAGE + ex.getMessage());
52         }
53
54     }
55
56 }