1
2
3
4
5
6
7
8
9
10 package bexee.model.elements;
11
12 import bexee.model.expression.BooleanExpression;
13
14 /***
15 * Representation of the <code>Source</code> BPEL element.
16 *
17 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:09 $
18 * @author Patric Fornasier
19 * @author Pawel Kowalski
20 */
21 public interface Source {
22
23 public Link getLink();
24
25 public void setLink(Link link);
26
27 public BooleanExpression getTransitionCondition();
28
29 public void setTransitionCondition(BooleanExpression booleanExpression);
30
31 }