Codota Logo
HistoricActivityInstanceEventEntity.setTaskAssignee
Code IndexAdd Codota to your IDE (free)

How to use
setTaskAssignee
method
in
org.camunda.bpm.engine.impl.history.event.HistoricActivityInstanceEventEntity

Best Java code snippets using org.camunda.bpm.engine.impl.history.event.HistoricActivityInstanceEventEntity.setTaskAssignee (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

@Override
public HistoryEvent createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task) {
 final ExecutionEntity executionEntity = (ExecutionEntity) execution;
 // create event instance
 HistoricActivityInstanceEventEntity evt = loadActivityInstanceEventEntity(executionEntity);
 // initialize event
 initActivityInstanceEvent(evt, executionEntity, HistoryEventTypes.ACTIVITY_INSTANCE_UPDATE);
 // update task assignment
 if(task != null) {
  evt.setTaskId(task.getId());
  evt.setTaskAssignee(task.getAssignee());
 }
 return evt;
}
origin: camunda/camunda-bpm-platform

@Override
public HistoryEvent createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task) {
 final ExecutionEntity executionEntity = (ExecutionEntity) execution;
 // create event instance
 HistoricActivityInstanceEventEntity evt = loadActivityInstanceEventEntity(executionEntity);
 // initialize event
 initActivityInstanceEvent(evt, executionEntity, HistoryEventTypes.ACTIVITY_INSTANCE_UPDATE);
 // update task assignment
 if(task != null) {
  evt.setTaskId(task.getId());
  evt.setTaskAssignee(task.getAssignee());
 }
 return evt;
}
origin: org.camunda.bpm/camunda-engine

@Override
public HistoryEvent createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task) {
 final ExecutionEntity executionEntity = (ExecutionEntity) execution;
 // create event instance
 HistoricActivityInstanceEventEntity evt = loadActivityInstanceEventEntity(executionEntity);
 // initialize event
 initActivityInstanceEvent(evt, executionEntity, HistoryEventTypes.ACTIVITY_INSTANCE_UPDATE);
 // update task assignment
 if(task != null) {
  evt.setTaskId(task.getId());
  evt.setTaskAssignee(task.getAssignee());
 }
 return evt;
}
org.camunda.bpm.engine.impl.history.eventHistoricActivityInstanceEventEntitysetTaskAssignee

Popular methods of HistoricActivityInstanceEventEntity

  • <init>
  • getEndTime
  • getStartTime
  • setActivityId
  • setActivityInstanceId
  • setActivityInstanceState
  • setActivityName
  • setActivityType
  • setCalledCaseInstanceId
  • setCalledProcessInstanceId
  • setDurationInMillis
  • setEndTime
  • setDurationInMillis,
  • setEndTime,
  • setEventType,
  • setExecutionId,
  • setId,
  • setParentActivityInstanceId,
  • setProcessDefinitionId,
  • setProcessDefinitionKey,
  • setProcessInstanceId,
  • setRootProcessInstanceId

Popular in Java

  • Finding current android device location
  • setContentView (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • SortedSet (java.util)
    A Set that further provides a total ordering on its elements. The elements are ordered using their C
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • Collectors (java.util.stream)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now