-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.json
More file actions
50 lines (50 loc) · 1.63 KB
/
process.json
File metadata and controls
50 lines (50 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name" : "TEAM Process",
"owner" : "dcastro",
"possibleExecutors" : [ "creator", "executor" ],
"subprocesses" : [ {
"activationCriterion" : "com.time.thing.ActivationCriterion1",
"finalizationCriterion" : "com.time.thing.FinalizationCriterion1",
"subprocess" : {
"name" : "Post offer",
"owner" : "dcastro",
"possibleExecutors" : [ "creator", "executor" ],
"manual" : true,
"inputSchema" : "schema1",
"stepExecutor" : "executorClass1"
}
}, {
"activationCriterion" : "com.time.thing.ActivationCriterion2",
"finalizationCriterion" : "com.time.thing.FinalizationCriterion2",
"subprocess" : {
"name" : "Receive applications",
"owner" : "dcastro",
"possibleExecutors" : [ "creator", "executor" ],
"subprocesses" : [ {
"activationCriterion" : "com.time.thing.ActCrit2",
"finalizationCriterion" : "com.time.thing.FinCrit2",
"subprocess" : {
"name" : "Receive application",
"owner" : "dcastro",
"possibleExecutors" : [ "creator", "executor" ],
"manual" : false,
"inputSchema" : "schema2",
"stepExecutor" : "executorClass2"
}
}, {
"activationCriterion" : "com.time.thing.ActCrit3",
"finalizationCriterion" : "com.time.thing.FinCrit3",
"subprocess" : {
"name" : "Close",
"owner" : "dcastro",
"possibleExecutors" : [ "creator", "executor" ],
"manual" : true,
"inputSchema" : "schema3",
"stepExecutor" : "executorClass3"
}
} ],
"sequential" : true
}
} ],
"sequential" : true
}