Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / mso-infrastructure-bpmn / src / main / java / org / onap / so / 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.onap.so.bpmn.common.workflow.service;
23
24 import java.util.Optional;
25 import org.camunda.bpm.engine.ProcessEngineServices;
26 import org.camunda.bpm.engine.ProcessEngines;
27 import org.springframework.stereotype.Service;
28
29 /**
30  * Base class for services that must be process-engine aware. The only process engine currently supported is the
31  * "default" process engine.
32  */
33 @Service
34 public class ProcessEngineAwareService {
35
36     private final String processEngineName = "default";
37     private volatile Optional<ProcessEngineServices> pes4junit = Optional.empty();
38
39     /**
40      * Gets the process engine name.
41      * 
42      * @return the process engine name
43      */
44     public String getProcessEngineName() {
45         return processEngineName;
46     }
47
48     /**
49      * Gets process engine services.
50      * 
51      * @return process engine services
52      */
53     public ProcessEngineServices getProcessEngineServices() {
54         return pes4junit.orElse(ProcessEngines.getProcessEngine(getProcessEngineName()));
55     }
56
57     /**
58      * Allows a particular process engine to be specified, overriding the usual process engine lookup by name. Intended
59      * primarily for the unit test environment.
60      * 
61      * @param pes process engine services
62      */
63     public void setProcessEngineServices4junit(ProcessEngineServices pes) {
64         pes4junit = Optional.ofNullable(pes);
65     }
66 }