fa2b8d55075671b6b67e96ea1206278cba493e03
[so.git] / so-etsi-nfvo / so-etsi-nfvo-ns-lcm / so-etsi-nfvo-ns-lcm-bpmn-flows / src / main / java / org / onap / so / etsi / nfvo / ns / lcm / bpmn / flows / service / WorkflowExecutorService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.etsi.nfvo.ns.lcm.bpmn.flows.service;
21
22 import static org.onap.so.etsi.nfvo.ns.lcm.bpmn.flows.Constants.TENANT_ID;
23 import static org.slf4j.LoggerFactory.getLogger;
24 import java.util.Map;
25 import org.camunda.bpm.engine.RuntimeService;
26 import org.camunda.bpm.engine.runtime.ProcessInstance;
27 import org.slf4j.Logger;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.scheduling.annotation.Async;
30 import org.springframework.stereotype.Service;
31
32 /**
33  * @author Waqas Ikram (waqas.ikram@est.tech)
34  *
35  */
36 @Service
37 public class WorkflowExecutorService {
38
39     private static final Logger logger = getLogger(WorkflowExecutorService.class);
40
41     private final RuntimeService runtimeService;
42
43     @Autowired
44     public WorkflowExecutorService(final RuntimeService runtimeService) {
45         this.runtimeService = runtimeService;
46     }
47
48     @Async
49     public void executeWorkflow(final String jobId, final String processDefinitionKey,
50             final Map<String, Object> variables) {
51         logger.info("Executing {} workflow with business key: {}", processDefinitionKey, jobId);
52         final ProcessInstance processInstance = runtimeService.createProcessInstanceByKey(processDefinitionKey)
53                 .businessKey(jobId).setVariables(variables).processDefinitionTenantId(TENANT_ID).execute();
54
55         logger.info("Workflow running with processInstanceId: {} and business key: {}",
56                 processInstance.getProcessInstanceId(), processInstance.getBusinessKey());
57     }
58
59 }