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


@Retention(value=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
 String value
          the id of the activity that is being entered / was entered
 

Element Detail

value

public abstract String value
the id of the activity that is being entered / was entered



Copyright © 2016 camunda services GmbH. All rights reserved.