1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.engine; |
18 | |
|
19 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
20 | |
import org.kuali.rice.kew.util.KEWConstants; |
21 | |
|
22 | |
import java.util.HashSet; |
23 | |
import java.util.Set; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | 0 | public class OrchestrationConfig { |
32 | |
|
33 | 0 | private boolean sendNotifications = true; |
34 | 0 | private String notificationType = KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ; |
35 | 0 | private Set<String> destinationNodeNames = new HashSet<String>(); |
36 | |
private ActionTakenValue cause; |
37 | |
|
38 | |
public Set<? extends String> getDestinationNodeNames() { |
39 | 0 | return destinationNodeNames; |
40 | |
} |
41 | |
public void setDestinationNodeNames(Set<String> destinationNodeNames) { |
42 | 0 | this.destinationNodeNames = destinationNodeNames; |
43 | 0 | } |
44 | |
public String getNotificationType() { |
45 | 0 | return notificationType; |
46 | |
} |
47 | |
public void setNotificationType(String notificationType) { |
48 | 0 | this.notificationType = notificationType; |
49 | 0 | } |
50 | |
public boolean isSendNotifications() { |
51 | 0 | return sendNotifications; |
52 | |
} |
53 | |
public void setSendNotifications(boolean sendNotifications) { |
54 | 0 | this.sendNotifications = sendNotifications; |
55 | 0 | } |
56 | |
public ActionTakenValue getCause() { |
57 | 0 | return cause; |
58 | |
} |
59 | |
public void setCause(ActionTakenValue cause) { |
60 | 0 | this.cause = cause; |
61 | 0 | } |
62 | |
|
63 | |
} |