495c77255dcc02d20f8d9ee8048db01e91f762a3
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / java / org / onap / so / bpmn / infrastructure / aai / groovyflows / AAIDeleteServiceInstance.java
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.groovyflows;
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.so.client.aai.AAIObjectType;
27 import org.onap.so.client.aai.AAIResourcesClient;
28 import org.onap.so.client.aai.entities.uri.AAIResourceUri;
29 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
30
31 public class AAIDeleteServiceInstance implements JavaDelegate{
32
33         ExceptionUtil exceptionUtil = new ExceptionUtil();
34         public void execute(DelegateExecution execution) throws Exception {
35                 try{
36                         String serviceInstanceId = (String) execution.getVariable("serviceInstanceId");
37                         AAIResourceUri serviceInstanceURI = AAIUriFactory.createResourceUri(AAIObjectType.SERVICE_INSTANCE,
38                                         serviceInstanceId);
39                         AAIResourcesClient aaiRC = new AAIResourcesClient();
40                         aaiRC.delete(serviceInstanceURI);
41                         execution.setVariable("GENDS_SuccessIndicator",true);
42                 } catch(Exception ex){
43                         String msg = "Exception in Delete Serivce Instance. Service Instance could not be deleted in AAI." + ex.getMessage();
44                         exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg);
45                 }
46                 
47         }
48         
49 }