Annotation Type StartActivity


  • @Retention(RUNTIME)
    @Qualifier
    public @interface StartActivity
    Can be used to qualify events fired when an activity is started
     public void beforeCreditAccount(@Observes @StartActivity("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 entered / was entered
    • Element Detail

      • value

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