Uses of Interface
org.activiti.engine.task.IdentityLink
-
Packages that use IdentityLink Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.delegate Interfaces used to include Java code in a process as the behavior of an activity or as a listener to process events withJavaDelegates.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.impl.cmd org.activiti.engine.impl.persistence.entity -
-
Uses of IdentityLink in org.activiti.engine
Methods in org.activiti.engine that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.List<IdentityLink>RepositoryService. getIdentityLinksForProcessDefinition(java.lang.String processDefinitionId)Retrieves theIdentityLinks associated with the given process definition.java.util.List<IdentityLink>RuntimeService. getIdentityLinksForProcessInstance(java.lang.String instanceId)Retrieves theIdentityLinks associated with the given process instance.java.util.List<IdentityLink>TaskService. getIdentityLinksForTask(java.lang.String taskId)Retrieves theIdentityLinks associated with the given task. -
Uses of IdentityLink in org.activiti.engine.delegate
Methods in org.activiti.engine.delegate that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.Set<IdentityLink>DelegateTask. getCandidates()Retrieves the candidate users and groups associated with the task. -
Uses of IdentityLink in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.List<IdentityLink>RepositoryServiceImpl. getIdentityLinksForProcessDefinition(java.lang.String processDefinitionId)java.util.List<IdentityLink>RuntimeServiceImpl. getIdentityLinksForProcessInstance(java.lang.String processInstanceId)java.util.List<IdentityLink>TaskServiceImpl. getIdentityLinksForTask(java.lang.String taskId) -
Uses of IdentityLink in org.activiti.engine.impl.cmd
Methods in org.activiti.engine.impl.cmd that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.List<IdentityLink>GetIdentityLinksForProcessDefinitionCmd. execute(CommandContext commandContext)java.util.List<IdentityLink>GetIdentityLinksForProcessInstanceCmd. execute(CommandContext commandContext)java.util.List<IdentityLink>GetIdentityLinksForTaskCmd. execute(CommandContext commandContext) -
Uses of IdentityLink in org.activiti.engine.impl.persistence.entity
Subinterfaces of IdentityLink in org.activiti.engine.impl.persistence.entity Modifier and Type Interface Description interfaceIdentityLinkEntityClasses in org.activiti.engine.impl.persistence.entity that implement IdentityLink Modifier and Type Class Description classIdentityLinkEntityImplMethods in org.activiti.engine.impl.persistence.entity that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.Set<IdentityLink>TaskEntityImpl. getCandidates()
-