1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.sbpm.sbpel;
20
21 public interface Scope extends StructuredActivity, StandardAttributes {
22
23 public boolean getIsIsolated();
24 public void setIsIsolated(boolean value);
25 public boolean getExitOnStandardFault();
26 public void setExitOnStandardFault(boolean value);
27 public boolean addVariable(Variable value);
28 public boolean removeVariable(Variable value);
29 public java.util.Set<Variable> listVariables();
30 public boolean addPartnerLink(PartnerLink value);
31 public boolean removePartnerLink(PartnerLink value);
32 public java.util.Set<PartnerLink> listPartnerLinks();
33 public boolean addMessageExchange(MessageExchange value);
34 public boolean removeMessageExchange(MessageExchange value);
35 public java.util.Set<MessageExchange> listMessageExchanges();
36 public boolean addCorrelationSet(CorrelationSet value);
37 public boolean removeCorrelationSet(CorrelationSet value);
38 public java.util.Set<CorrelationSet> listCorrelationSets();
39 public boolean addCatch(Catch value);
40 public boolean removeCatch(Catch value);
41 public java.util.Set<Catch> listCatchs();
42 public CatchAll getCatchAll();
43 public void setCatchAll(CatchAll value);
44 public boolean addOnEvent(OnEvent value);
45 public boolean removeOnEvent(OnEvent value);
46 public java.util.Set<OnEvent> listOnEvents();
47 public boolean addOnAlarm(RepeatableOnAlarm value);
48 public boolean removeOnAlarm(RepeatableOnAlarm value);
49 public java.util.Set<RepeatableOnAlarm> listOnAlarms();
50 public CompensationHandler getCompensationHandler();
51 public void setCompensationHandler(CompensationHandler value);
52 public TerminationHandler getTerminationHandler();
53 public void setTerminationHandler(TerminationHandler value);
54 public Activity getActivity();
55 public void setActivity(Activity value);
56 }
57
58
59
60
61
62