Available Methods
- setCurrentFlowElement ( )
- getParentId ( )
- getCurrentFlowElement ( )
- getProcessInstanceId ( )
- getProcessDefinitionId ( )
- getSuperExecution ( )
- isActive ( )
- getParent ( )
- getVariable ( )
- getActivityId ( )
- getActivity ( )
- setVariable ( )
- getVariablesLocal ( )
- isSuspended ( )
- getEventSubscriptions ( )
- setConcurrent ( )
- isProcessInstanceType ( )
- getExecutions ( )
- findActiveActivityIds ( )
- hasVariable ( )
- setVariables ( )
- getBusinessKey ( )
- executeActivity ( )
- getProcessDefinition ( )
- setLocalizedDescription ( )
- setScope ( )
- getCompensateEventSubscriptions ( )
- start ( )
- getIdentityLinks ( )
- isScope ( )
- getId ( )
- setName ( )
- getVariableLocal ( )
- setTransientVariables ( )
Related Classes
- java.util.Date
- java.util.Iterator
- org.apache.commons.lang3.StringUtils
- com.fasterxml.jackson.databind.JsonNode
- com.fasterxml.jackson.databind.node.ObjectNode
- org.activiti.engine.task.Task
- org.activiti.engine.runtime.ProcessInstance
- org.activiti.engine.RuntimeService
- org.activiti.engine.repository.ProcessDefinition
- org.activiti.engine.delegate.DelegateExecution
- org.activiti.bpmn.model.BpmnModel
- org.activiti.engine.ActivitiException
- org.activiti.engine.impl.persistence.entity.ProcessDefinitionEntity
- org.activiti.engine.runtime.Execution
- org.activiti.engine.impl.context.Context
- org.activiti.engine.impl.pvm.process.ActivityImpl
- org.activiti.engine.delegate.Expression
- org.activiti.engine.impl.persistence.entity.TaskEntity
- org.activiti.engine.impl.identity.Authentication
- org.activiti.engine.impl.interceptor.CommandContext
- org.activiti.bpmn.model.Process
- org.alfresco.repo.security.authentication.AuthenticationUtil
- org.activiti.engine.ActivitiObjectNotFoundException
- org.activiti.engine.impl.pvm.process.ProcessDefinitionImpl
- org.activiti.engine.impl.persistence.entity.JobEntity
Java Code Examples for org.activiti.engine.impl.persistence.entity.ExecutionEntity#getIdentityLinks()
The following examples show how to use
org.activiti.engine.impl.persistence.entity.ExecutionEntity#getIdentityLinks() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GetIdentityLinksForProcessInstanceCmd.java From activiti6-boot2 with Apache License 2.0 | 5 votes |
@SuppressWarnings({ "unchecked", "rawtypes" }) public List<IdentityLink> execute(CommandContext commandContext) { ExecutionEntity processInstance = commandContext.getExecutionEntityManager().findById(processInstanceId); if (processInstance == null) { throw new ActivitiObjectNotFoundException("Cannot find process definition with id " + processInstanceId, ExecutionEntity.class); } return (List) processInstance.getIdentityLinks(); }
Example 2
Source File: GetIdentityLinksForProcessInstanceCmd.java From flowable-engine with Apache License 2.0 | 5 votes |
@Override @SuppressWarnings({ "unchecked", "rawtypes" }) public List<IdentityLink> execute(CommandContext commandContext) { ExecutionEntity processInstance = commandContext .getExecutionEntityManager() .findExecutionById(processInstanceId); if (processInstance == null) { throw new ActivitiObjectNotFoundException("Cannot find process definition with id " + processInstanceId, ExecutionEntity.class); } return (List) processInstance.getIdentityLinks(); }