Annotation Type TakeTransition


  • @Retention(RUNTIME)
    @Qualifier
    public @interface TakeTransition
    Can be used to qualify events fired when a transition is taken
     public void onTakeT1(@Observes @TakeTransition("t1") BusinessProcessEvent evt) {
       // ...
     }
     
    Author:
    Daniel Meyer
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String value
      the id of the transition that is being taken
    • Element Detail

      • value

        java.lang.String value
        the id of the transition that is being taken