package org.activiti.crystalball.simulator.delegate.event.impl; /* 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. */ import org.activiti.crystalball.simulator.SimulationEvent; import org.activiti.engine.delegate.event.ActivitiEntityEvent; import org.activiti.engine.delegate.event.ActivitiEvent; import org.activiti.engine.delegate.event.ActivitiEventType; import org.activiti.engine.impl.context.Context; import org.activiti.engine.task.Task; import java.util.HashMap; import java.util.Map; /** * @author martin.grofcik */ public class UserTaskCompleteTransformer extends Activiti2SimulationEventFunction { public static final String PROCESS_INSTANCE_ID = "processInstanceId"; public static final String TASK_DEFINITION_KEY = "taskDefinitionKey"; public static final String TASK_VARIABLES = "taskVariables"; public UserTaskCompleteTransformer(String simulationEventType) { super(simulationEventType); } @Override public SimulationEvent apply(ActivitiEvent event) { if (ActivitiEventType.TASK_COMPLETED.equals(event.getType())) { Task task = (Task) ((ActivitiEntityEvent) event).getEntity(); Map<String, Object> properties = new HashMap<String, Object>(); properties.put("taskId", task.getId()); properties.put(TASK_DEFINITION_KEY, task.getTaskDefinitionKey()); properties.put(PROCESS_INSTANCE_ID, task.getProcessInstanceId()); properties.put(TASK_VARIABLES, task.getProcessVariables()); return new SimulationEvent.Builder(this.simulationEventType). simulationTime(Context.getProcessEngineConfiguration().getClock().getCurrentTime().getTime()). properties(properties). build(); } return null; } }