Activiti

cancel
Showing results for 
Search instead for 
Did you mean: 
riadhazzouz
Active Member

Activiti

How can I use activiti to detect events on workflows ?

4 Replies
andrakula
Partner

Re: Activiti

What do you mean with "detect events on workflows"?

riadhazzouz
Active Member

Re: Activiti

started and canceled.
Thanks.

andrakula
Partner

Re: Activiti

<process id="...">
    <extensionElements>
      <activiti:executionListener event="start" expression="${yourListener.yourMethod(execution)}"/>
      <activiti:executionListener event="end" expression="${yourListener.yourMethod(execution)}"/>

...

riadhazzouz
Active Member

Re: Activiti

Is there a way using activiti ?
I tried creating activiti.cfg.xml file, and some ActivitiListeners, but probably I'm still missing things.
Thanks.