本文整理汇总了Java中org.camunda.bpm.engine.delegate.DelegateExecution.getProcessInstanceId方法的典型用法代码示例。如果您正苦于以下问题:Java DelegateExecution.getProcessInstanceId方法的具体用法?Java DelegateExecution.getProcessInstanceId怎么用?Java DelegateExecution.getProcessInstanceId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.camunda.bpm.engine.delegate.DelegateExecution
的用法示例。
在下文中一共展示了DelegateExecution.getProcessInstanceId方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
@Override
public void execute(DelegateExecution execution) throws Exception {
String processInstanceId = execution.getProcessInstanceId();
System.out.println("Entering FindOwnProcessTask.execute (processInstanceId="
+ processInstanceId + ")");
ProcessInstanceQuery query = execution.getProcessEngineServices().getRuntimeService()
.createProcessInstanceQuery().processInstanceId(processInstanceId);
ProcessInstance pi = query.singleResult();
if (pi == null) {
System.out
.println("WARN - No process instance with id " + processInstanceId + " found!");
} else {
System.out.println("Hello World!");
}
System.out.println(
"Exiting FindOwnProcessTask.execute (processInstanceId=" + processInstanceId + ")");
}
示例2: execute
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
@Override
public void execute(DelegateExecution execution) throws Exception {
String processInstanceId = execution.getProcessInstanceId();
System.out.println(
"Entering HelloWorldTask.execute (processInstanceId=" + processInstanceId + ")");
ProcessInstanceQuery query =
runtimeService.createProcessInstanceQuery().processInstanceId(processInstanceId);
ProcessInstance pi = query.singleResult();
if (pi == null) {
System.out
.println("WARN - No process instance with id " + processInstanceId + " found!");
} else {
System.out.println("Hello World!");
}
System.out.println(
"Exiting HelloWorldTask.execute (processInstanceId=" + processInstanceId + ")");
}
示例3: fromExecution
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public static DelegateEvent fromExecution(DelegateExecution delegateExecution) {
DelegateEvent event = new DelegateEvent();
event.activityInstanceId = delegateExecution.getActivityInstanceId();
event.businessKey = delegateExecution.getBusinessKey();
event.currentActivityId = delegateExecution.getCurrentActivityId();
event.currentActivityName = delegateExecution.getCurrentActivityName();
event.currentTransitionId = delegateExecution.getCurrentTransitionId();
event.eventName = delegateExecution.getEventName();
event.id = delegateExecution.getId();
event.parentActivityInstanceId = delegateExecution.getParentActivityInstanceId();
event.parentId = delegateExecution.getParentId();
event.processBusinessKey = delegateExecution.getProcessBusinessKey();
event.processDefinitionId = delegateExecution.getProcessDefinitionId();
event.processInstanceId = delegateExecution.getProcessInstanceId();
event.tenantId = delegateExecution.getTenantId();
event.variableScopeKey = delegateExecution.getVariableScopeKey();
return event;
}
示例4: notify
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
@Override
public void notify(DelegateExecution delegateExecution) {
String userId = delegateExecution.getProcessEngineServices().getIdentityService().getCurrentAuthentication().getUserId();
String processInstanceId = delegateExecution.getProcessInstanceId();
TechOrder techOrder = (TechOrder) delegateExecution.getVariable("techorder");
techOrder.setId(processInstanceId);
techOrder.setOwner(orgStructureHelper.getUser(userId));
delegateExecution.setVariable("processReaders", userId);
Letter letter = letterTemplateService.generateStartForTechOrder(techOrder.getId());
mailService.sendMail(userId, letter.getSubject(), letter.getBody());
}
示例5: execute
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public void execute(DelegateExecution delegateExecution) throws Exception {
String processInstanceId = delegateExecution.getProcessInstanceId();
ProcessEngineServices es = delegateExecution.getProcessEngineServices();
TaskService ts = es.getTaskService();
for (Task task : ts.createTaskQuery().processInstanceId(processInstanceId).active().list()) {
Letter letter = letterTemplateService.generateReminderForTechOrder(processInstanceId, task.getId());
String taskAssignee = task.getAssignee();
mailService.sendMail(taskAssignee, letter.getSubject(), letter.getBody());
}
}
示例6: CdiBusinessProcessEvent
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public CdiBusinessProcessEvent(String activityId,
String transitionName,
ProcessDefinition processDefinition,
DelegateExecution execution,
BusinessProcessEventType type,
Date timeStamp) {
this.activityId = activityId;
this.transitionName = transitionName;
this.processInstanceId = execution.getProcessInstanceId();
this.executionId = execution.getId();
this.type = type;
this.timeStamp = timeStamp;
this.processDefinition = processDefinition;
this.delegateTask = null;
}
示例7: execute
import org.camunda.bpm.engine.delegate.DelegateExecution; //导入方法依赖的package包/类
public void execute(DelegateExecution execution) throws Exception {
RepositoryService repoService = execution.getProcessEngineServices().getRepositoryService();
ProcessDefinition targetDefinition = repoService.createProcessDefinitionQuery().latestVersion().singleResult();
SetProcessDefinitionVersionCmd migrationCommand =
new SetProcessDefinitionVersionCmd(execution.getProcessInstanceId(), targetDefinition.getVersion());
Context.getProcessEngineConfiguration().getCommandExecutorTxRequired().execute(migrationCommand);
}