Uses of Interface
org.camunda.bpm.engine.task.IdentityLink
- 
Packages that use IdentityLink Package Description org.camunda.bpm.engine Public API of the Camunda Platform 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
 IdentityService: Used for managingUsers,Groups and the relations between them
 ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
 HistoryService: Exposes information about ongoing and past process instances.
 FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.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.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.history.producer org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.rest.dto.task org.camunda.bpm.engine.rest.hal.identitylink 
- 
- 
Uses of IdentityLink in org.camunda.bpm.engineMethods in org.camunda.bpm.engine that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.List<IdentityLink>RepositoryService. getIdentityLinksForProcessDefinition(java.lang.String processDefinitionId)Deprecated.Use authorization mechanism instead.java.util.List<IdentityLink>TaskService. getIdentityLinksForTask(java.lang.String taskId)Retrieves theIdentityLinks associated with the given task.
- 
Uses of IdentityLink in org.camunda.bpm.engine.delegateMethods in org.camunda.bpm.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.camunda.bpm.engine.implMethods in org.camunda.bpm.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>TaskServiceImpl. getIdentityLinksForTask(java.lang.String taskId)
- 
Uses of IdentityLink in org.camunda.bpm.engine.impl.cmdMethods in org.camunda.bpm.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>GetIdentityLinksForTaskCmd. execute(CommandContext commandContext)
- 
Uses of IdentityLink in org.camunda.bpm.engine.impl.history.producerMethods in org.camunda.bpm.engine.impl.history.producer with parameters of type IdentityLink Modifier and Type Method Description HistoryEventDefaultHistoryEventProducer. createHistoricIdentityLinkAddEvent(IdentityLink identityLink)HistoryEventHistoryEventProducer. createHistoricIdentityLinkAddEvent(IdentityLink identitylink)Fired when an identity link is addedHistoryEventDefaultHistoryEventProducer. createHistoricIdentityLinkDeleteEvent(IdentityLink identityLink)HistoryEventHistoryEventProducer. createHistoricIdentityLinkDeleteEvent(IdentityLink identityLink)Fired when an identity links is deletedprotected HistoryEventDefaultHistoryEventProducer. createHistoricIdentityLinkEvt(IdentityLink identityLink, HistoryEventTypes eventType)protected voidDefaultHistoryEventProducer. initHistoricIdentityLinkEvent(HistoricIdentityLinkLogEventEntity evt, IdentityLink identityLink, HistoryEventType eventType)
- 
Uses of IdentityLink in org.camunda.bpm.engine.impl.persistence.entityClasses in org.camunda.bpm.engine.impl.persistence.entity that implement IdentityLink Modifier and Type Class Description classIdentityLinkEntityMethods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type IdentityLink Modifier and Type Method Description java.util.Set<IdentityLink>TaskEntity. getCandidates()
- 
Uses of IdentityLink in org.camunda.bpm.engine.rest.dto.taskMethods in org.camunda.bpm.engine.rest.dto.task with parameters of type IdentityLink Modifier and Type Method Description static IdentityLinkDtoIdentityLinkDto. fromIdentityLink(IdentityLink identityLink)
- 
Uses of IdentityLink in org.camunda.bpm.engine.rest.hal.identitylinkMethods in org.camunda.bpm.engine.rest.hal.identitylink with parameters of type IdentityLink Modifier and Type Method Description static HalIdentityLinkHalIdentityLink. fromIdentityLink(IdentityLink identityLink)
 
-