1 package org.andromda.cartridges.jbpm;
2
3 import org.andromda.core.profile.Profile;
4
5
6
7
8
9
10 public class JBpmProfile
11 {
12
13
14
15 private static final Profile profile = Profile.instance();
16
17
18
19
20
21 public static final String STEREOTYPE_BUSINESS_PROCESS = profile.get("BUSINESS_PROCESS");
22
23
24
25 public static final String STEREOTYPE_BEFORE_SIGNAL = profile.get("BEFORE_SIGNAL");
26
27
28
29 public static final String STEREOTYPE_AFTER_SIGNAL = profile.get("AFTER_SIGNAL");
30
31
32
33 public static final String STEREOTYPE_NODE_ENTER = profile.get("NODE_ENTER");
34
35
36
37 public static final String STEREOTYPE_NODE_LEAVE = profile.get("NODE_LEAVE");
38
39
40
41 public static final String STEREOTYPE_TASK = profile.get("TASK");
42
43
44
45 public static final String STEREOTYPE_TIMER = profile.get("TIMER");
46
47
48
49
50
51 public static final String TAGGEDVALUE_ASSIGNMENT_EXPRESSION = profile.get("ASSIGNMENT_EXPRESSION");
52
53
54
55 public static final String TAGGEDVALUE_TIMER_REPEAT = profile.get("TIMER_REPEAT");
56
57
58
59 public static final String TAGGEDVALUE_TIMER_DUEDATE = profile.get("TIMER_DUEDATE");
60
61
62
63 public static final String TAGGEDVALUE_TIMER_TRANSITION = profile.get("TIMER_TRANSITION");
64
65
66
67 public static final String TAGGEDVALUE_TASK_BLOCKING = profile.get("TASK_BLOCKING");
68 }