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


@Retention(value=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
 String value
          the id of the transition that is being taken
 

Element Detail

value

public abstract String value
the id of the transition that is being taken



Copyright © 2014 camunda services GmbH. All Rights Reserved.