Added input params to service-information section
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / workflow / service / ProcessEngineAwareService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.mso.bpmn.common.workflow.service;
23
24 import java.util.Optional;
25
26 import org.camunda.bpm.engine.ProcessEngineServices;
27 import org.camunda.bpm.engine.ProcessEngines;
28
29 /**
30  * Base class for services that must be process-engine aware. The only
31  * process engine currently supported is the "default" process engine.
32  */
33 public class ProcessEngineAwareService {
34         
35         private final String processEngineName = "default";
36         private volatile Optional<ProcessEngineServices> pes4junit = Optional.empty();
37         
38         /**
39          * Gets the process engine name.
40          * @return the process engine name
41          */
42         public String getProcessEngineName() {
43                 return processEngineName;
44         }
45
46         /**
47          * Gets process engine services.
48          * @return process engine services
49          */
50         public ProcessEngineServices getProcessEngineServices() {
51                 return pes4junit.orElse(ProcessEngines.getProcessEngine(
52                                 getProcessEngineName()));
53         }
54
55         /**
56          * Allows a particular process engine to be specified, overriding the
57          * usual process engine lookup by name.  Intended primarily for the
58          * unit test environment.
59          * @param pes process engine services
60          */
61         public void setProcessEngineServices4junit(ProcessEngineServices pes) {
62                 pes4junit = Optional.ofNullable(pes);
63         }
64 }