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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
{
"id": "id12345",
"name": "test",
"scene": "abcd",
"data": {
"nodes": [
{
"id": "node0",
"type": "startEvent",
"name": "Start",
"parentId": "root",
"position": {
"left": 99,
"top": 131,
"width": 56,
"height": 56
},
"connection": [
{
"sourceRef": "node0",
"targetRef": "serviceTask"
}
],
"parameters": [
{
"name": "aaa",
"value": "a111",
"valueSource": "string",
"type": "string",
"required": false,
"show": true,
"errorMsg": ""
},
{
"name": "bbb",
"value": "b111",
"valueSource": "string",
"type": "string",
"required": false,
"show": true,
"errorMsg": ""
}
]
},
{
"id": "node2",
"type": "endEvent",
"name": "End",
"parentId": "root",
"position": {
"left": 459,
"top": 131,
"width": 56,
"height": 56
},
"connection": []
},
{
"id": "serviceTask",
"type": "serviceTask",
"typeId": "apds_serviceA",
"icon": "apds_service",
"name": "Java Task",
"parentId": "root",
"position": {
"left": 232,
"top": 131,
"width": 56,
"height": 56
},
"connection": [
{
"sourceRef": "serviceTask",
"targetRef": "scriptTask"
}
],
"className": "org.onap.sdc.workflowdesigner.JavaTask",
"inputs": [
{
"name": "param1",
"valueSource": "string",
"type": "string",
"required": false,
"show": true,
"errorMsg": "",
"value": "a111"
},
{
"name": "param2",
"valueSource": "string",
"type": "string",
"required": true,
"show": true,
"errorMsg": "",
"value": "b111"
},
{
"name": "param3",
"valueSource": "string",
"type": "string",
"required": true,
"show": true,
"errorMsg": "",
"value": "c111"
}
],
"outputs": [
{
"name": "out1",
"value": "",
"valueSource": "string",
"type": "string",
"required": false,
"show": true,
"errorMsg": ""
}
]
},
{
"id": "scriptTask",
"type": "scriptTask",
"typeId": "apds_scriptB",
"icon": "apds_script",
"name": "Groovy Task",
"parentId": "root",
"position": {
"left": 335,
"top": 131,
"width": 56,
"height": 56
},
"connection": [
{
"sourceRef": "scriptTask",
"targetRef": "node2"
}
],
"scriptFormat": "Groovy",
"script": "xyz"
}
]
}
}
|