congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
HistoricActivityInstanceEventEntity.setTaskAssignee
Code IndexAdd Tabnine 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)

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

  • Reading from database using SQL prepared statement
  • getApplicationContext (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • compareTo (BigDecimal)
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Permission (java.security)
    Legacy security code; do not use.
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now