1 package org.jbpm.bpel.def; 2 3 import org.jbpm.graph.exe.ExecutionContext; 4 5 12 public class Compensate extends Activity { 13 14 private static final long serialVersionUID = 1L; 15 16 private Scope scope; 17 18 public Compensate() { 19 } 20 21 public Compensate(String name) { 22 super(name); 23 } 24 25 public void execute(ExecutionContext context) { 26 } 28 29 public Scope getScope() { 30 return scope; 31 } 32 33 public void setScope(Scope scope) { 34 this.scope = scope; 35 } 36 37 38 public void accept(BpelVisitor visitor) { 39 visitor.visit(this); 40 } 41 } | Popular Tags |