org.camunda.bpm.engine.cdi.annotation.event
Annotation Type CompleteTask


@Retention(value=RUNTIME)
@Qualifier
public @interface CompleteTask

Can be used to qualify events fired when a task is completed.

 public void onApproveRegistrationTaskComplete(@Observes @CompleteTask("approveRegistration") BusinessProcessEvent evt) {
   // ...
 }
 

Author:
Daniel Meyer, Sebastian Menski

Required Element Summary
 String value
          the definition key (id of the task in BPMN XML) of the task which was completed
 

Element Detail

value

public abstract String value
the definition key (id of the task in BPMN XML) of the task which was completed



Copyright © 2017 camunda services GmbH. All rights reserved.