KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jbpm.bpel.def;
2
3 import org.jbpm.graph.exe.ExecutionContext;
4
5 import org.jbpm.bpel.service.def.Invoker;
6
7 /**
8  * Invokes an operation on a Web Service provided by a partner.
9  * @see "WS-BPEL 2.0 §6.5 §11.3"
10  * @author Juan Cantú
11  * @version $Revision: 1.6 $ $Date: 2005/05/31 00:49:53 $
12  */

13 public class Invoke extends Activity {
14
15   private static final long serialVersionUID = 1L;
16
17   private Invoker invoker = new Invoker();
18   
19   public Invoke() {
20     super();
21   }
22
23   public Invoke(String JavaDoc name) {
24     super(name);
25   }
26
27   public void execute(ExecutionContext context) {
28     // TODO Auto-generated method stub
29
}
30   
31   public Invoker getInvoker() {
32     return invoker;
33   }
34   
35   /**{@inheritDoc}*/
36   public void accept(BpelVisitor visitor) {
37     visitor.visit(this);
38   }
39 }
40
Popular Tags