org.camunda.bpm.engine.cdi.annotation.event
Annotation Type BusinessProcessDefinition


@Retention(value=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
 String value
          the key of the process
 

value

public abstract String value
the key of the process

Default:
""


Copyright © 2014 camunda services GmbH. All Rights Reserved.