All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.activiti.service.runtime.ActivitiService Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
/* Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.activiti.service.runtime;

import java.util.Map;

import org.activiti.engine.RuntimeService;
import org.activiti.engine.runtime.ProcessInstance;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * Wrapper for various Activiti operations
 * 
 * @author jbarrez
 */
@Service
@Transactional
public class ActivitiService {
	
	@Autowired
	private RuntimeService runtimeService;
	
	public ProcessInstance startProcessInstance(String processDefinitionId, Map variables, String processInstanceName) {
		
		 // Actually start the process
        // No need to pass the tenant id here, the process definition is already tenant based and the process instance will inherit it
        ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinitionId, variables);
        
        // Can only set name in case process didn't end instantly
        if (!processInstance.isEnded() && processInstanceName != null) {
            runtimeService.setProcessInstanceName(processInstance.getId(), processInstanceName);
        }
        
        return processInstance;
        
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy