/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.workflow.kaleo.runtime.integration.impl.internal; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.workflow.WorkflowConstants; import com.liferay.portal.kernel.workflow.WorkflowException; import com.liferay.portal.kernel.workflow.WorkflowInstance; import com.liferay.portal.kernel.workflow.WorkflowInstanceManager; import com.liferay.portal.workflow.kaleo.runtime.WorkflowEngine; import java.io.Serializable; import java.util.List; import java.util.Map; import org.osgi.service.component.annotations.Component; import org.osgi.service.component.annotations.Reference; /** * @author Michael C. Han * @author Marcellus Tavares */ @Component( immediate = true, property = {"proxy.bean=false"}, service = WorkflowInstanceManager.class ) public class WorkflowInstanceManagerImpl implements WorkflowInstanceManager { @Override public void deleteWorkflowInstance(long companyId, long workflowInstanceId) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); _workflowEngine.deleteWorkflowInstance( workflowInstanceId, serviceContext); } @Override public List<String> getNextTransitionNames( long companyId, long userId, long workflowInstanceId) throws WorkflowException { try { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); serviceContext.setUserId(userId); return _workflowEngine.getNextTransitionNames( workflowInstanceId, serviceContext); } catch (Exception e) { throw new WorkflowException(e); } } @Override public WorkflowInstance getWorkflowInstance( long companyId, long workflowInstanceId) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstance( workflowInstanceId, serviceContext); } @Override public int getWorkflowInstanceCount( long companyId, Long userId, String assetClassName, Long assetClassPK, Boolean completed) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstanceCount( userId, assetClassName, assetClassPK, completed, serviceContext); } @Override public int getWorkflowInstanceCount( long companyId, Long userId, String[] assetClassNames, Boolean completed) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstanceCount( userId, assetClassNames, completed, serviceContext); } @Override public int getWorkflowInstanceCount( long companyId, String workflowDefinitionName, Integer workflowDefinitionVersion, Boolean completed) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstanceCount( workflowDefinitionName, workflowDefinitionVersion, completed, serviceContext); } @Override public List<WorkflowInstance> getWorkflowInstances( long companyId, Long userId, String assetClassName, Long assetClassPK, Boolean completed, int start, int end, OrderByComparator<WorkflowInstance> orderByComparator) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstances( userId, assetClassName, assetClassPK, completed, start, end, orderByComparator, serviceContext); } @Override public List<WorkflowInstance> getWorkflowInstances( long companyId, Long userId, String[] assetClassNames, Boolean completed, int start, int end, OrderByComparator<WorkflowInstance> orderByComparator) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstances( userId, assetClassNames, completed, start, end, orderByComparator, serviceContext); } @Override public List<WorkflowInstance> getWorkflowInstances( long companyId, String workflowDefinitionName, Integer workflowDefinitionVersion, Boolean completed, int start, int end, OrderByComparator<WorkflowInstance> orderByComparator) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.getWorkflowInstances( workflowDefinitionName, workflowDefinitionVersion, completed, start, end, orderByComparator, serviceContext); } @Override public List<WorkflowInstance> search( long companyId, Long userId, String assetType, String nodeName, String kaleoDefinitionName, Boolean completed, int start, int end, OrderByComparator<WorkflowInstance> orderByComparator) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.search( userId, assetType, nodeName, kaleoDefinitionName, completed, start, end, orderByComparator, serviceContext); } @Override public int searchCount( long companyId, Long userId, String assetType, String nodeName, String kaleoDefinitionName, Boolean completed) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.searchCount( userId, assetType, nodeName, kaleoDefinitionName, completed, serviceContext); } @Override public WorkflowInstance signalWorkflowInstance( long companyId, long userId, long workflowInstanceId, String transitionName, Map<String, Serializable> workflowContext) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); serviceContext.setUserId(userId); return _workflowEngine.signalWorkflowInstance( workflowInstanceId, transitionName, workflowContext, serviceContext); } @Override public WorkflowInstance startWorkflowInstance( long companyId, long groupId, long userId, String workflowDefinitionName, Integer workflowDefinitionVersion, String transitionName, Map<String, Serializable> workflowContext) throws WorkflowException { ServiceContext serviceContext = (ServiceContext)workflowContext.get( WorkflowConstants.CONTEXT_SERVICE_CONTEXT); serviceContext.setCompanyId(companyId); serviceContext.setScopeGroupId(groupId); serviceContext.setUserId(userId); return _workflowEngine.startWorkflowInstance( workflowDefinitionName, workflowDefinitionVersion, transitionName, workflowContext, serviceContext); } @Override public WorkflowInstance updateWorkflowContext( long companyId, long workflowInstanceId, Map<String, Serializable> workflowContext) throws WorkflowException { ServiceContext serviceContext = new ServiceContext(); serviceContext.setCompanyId(companyId); return _workflowEngine.updateContext( workflowInstanceId, workflowContext, serviceContext); } @Reference private WorkflowEngine _workflowEngine; }