Annotation Type EndActivity


  • @Retention(RUNTIME)
    @Qualifier
    public @interface EndActivity
    Can be used to qualify events fired when an activity is ended / left
     public void onCreditAccountCompleted(@Observes @EndActivity("creditAccount") BusinessProcessEvent evt) {
       // ...
     }
     
    Author:
    Daniel Meyer
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String value
      the id of the activity that is being left / was left
    • Element Detail

      • value

        java.lang.String value
        the id of the activity that is being left / was left