1
2
3
4
5
6
7
8
9 package bexee.model.activity;
10
11 /***
12 * Representation of a Compensate BPEL element.
13 *
14 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:11 $
15 * @author Patric Fornasier
16 * @author Pawel Kowalski
17 */
18 public interface Compensate extends Activity {
19
20 //***************************************************/
21
22
23
24 /***
25 * Set the root scope of this Compensate.
26 *
27 * @param scope
28 */
29 public void setScope(Scope scope);
30
31 /***
32 * Get the root scope of this Compensate.
33 *
34 * @return
35 */
36 public Scope getScope();
37
38 }