Annotation Type BusinessProcessDefinition


  • @Retention(RUNTIME)
    @Qualifier
    public @interface BusinessProcessDefinition
    Can be used to qualify events with details about a ProcessDefinition:
     public void onSthRelatedToBilling(@Observes @BusinessProcessDefinition("billingProcess") BusinessProcessEvent evt) {
       // ...
     }
     
    Author:
    Daniel Meyer
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String value
      the key of the process
    • Element Detail

      • value

        java.lang.String value
        the key of the process
        Default:
        ""