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 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 name) { 24 super(name); 25 } 26 27 public void execute(ExecutionContext context) { 28 } 30 31 public Invoker getInvoker() { 32 return invoker; 33 } 34 35 36 public void accept(BpelVisitor visitor) { 37 visitor.visit(this); 38 } 39 } 40 | Popular Tags |