Ejemplo n.º 1
0
 void fireEvent(BpelEvent event) {
   // Note that the eventListeners list is a copy-on-write array, so need
   // to mess with synchronization.
   for (org.apache.ode.bpel.iapi.BpelEventListener l : _contexts.eventListeners) {
     l.onEvent(event);
   }
 }