KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > jpdl > par > ProcessLoadedActionHandler


1 package org.jbpm.jpdl.par;
2
3 import org.jbpm.graph.def.*;
4 import org.jbpm.graph.exe.*;
5
6 public class ProcessLoadedActionHandler implements ActionHandler {
7
8   private static final long serialVersionUID = 1L;
9
10   public void execute(ExecutionContext executionContext) throws Exception JavaDoc {
11     // notify the ProcessArchiveClassLoadingTest that this
12
// class has been executed
13
ProcessArchiveClassLoadingDbTest.isLoadedActionHandlerExecuted = true;
14   }
15 }
16
Popular Tags