Annotation Type DeleteTask


  • @Retention(RUNTIME)
    @Qualifier
    public @interface DeleteTask
    Can be used to qualify events fired when a task is deleted.
     public void onApproveRegistrationTaskDelete(@Observes @DeleteTask("approveRegistration") BusinessProcessEvent evt) {
       // ...
     }
     
    Author:
    Daniel Meyer, Sebastian Menski
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String value
      the definition key (id of the task in BPMN XML) of the task which was deleted
    • Element Detail

      • value

        java.lang.String value
        the definition key (id of the task in BPMN XML) of the task which was deleted