KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > def > Exit


1 package org.jbpm.bpel.def;
2
3 import org.jbpm.graph.exe.ExecutionContext;
4
5 /**
6  * The exit activity is used to immediately terminate the behavior of a
7  * business process instance
8  * @see "WS-BPEL 2.0 §14.6"
9  * @author Juan Cantú
10  * @version $Revision: 1.2 $ $Date: 2005/05/31 00:49:53 $
11  */

12 public class Exit extends Activity {
13
14   private static final long serialVersionUID = 1L;
15
16   public void execute(ExecutionContext context) {
17     // TODO Auto-generated method stub
18
}
19
20   /**{@inheritDoc}*/
21   public void accept(BpelVisitor visitor) {
22     visitor.visit(this);
23   }
24 }
25
Popular Tags