cpee 1.3.199 → 1.3.200
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/cpee.gemspec +1 -1
- data/lib/cpee/callback.rb +4 -4
- data/lib/cpee/handler_notifications.rb +3 -3
- data/server/instances/60/properties.xml +150 -0
- data/server/instances/61/properties.xml +150 -0
- data/server/instances/62/properties.xml +114 -0
- data/server/instances/63/properties.xml +150 -0
- data/server/instances/64/properties.xml +114 -0
- data/server/instances/65/properties.xml +114 -0
- data/server/instances/66/properties.xml +114 -0
- data/server/instances/67/properties.xml +114 -0
- data/server/instances/68/properties.xml +112 -0
- data/server/instances/69/notifications/4fa830eafc09f4c0d0070a3453cac985/consumer-secret +1 -0
- data/server/instances/69/notifications/4fa830eafc09f4c0d0070a3453cac985/producer-secret +1 -0
- data/server/instances/{59/notifications/ecf0f66087b8875ad90cb4b556d3714d → 69/notifications/4fa830eafc09f4c0d0070a3453cac985}/subscription.xml +0 -0
- data/server/instances/69/properties.xml +114 -0
- metadata +14 -4
- data/server/instances/59/notifications/ecf0f66087b8875ad90cb4b556d3714d/consumer-secret +0 -1
- data/server/instances/59/notifications/ecf0f66087b8875ad90cb4b556d3714d/producer-secret +0 -1
@@ -0,0 +1,150 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<attributes>
|
3
|
+
<uuid>cc264b4f-11f6-467d-b77e-74d579029742</uuid>
|
4
|
+
<info>Enter info here</info>
|
5
|
+
<modeltype>CPEE</modeltype>
|
6
|
+
<theme>default</theme>
|
7
|
+
</attributes>
|
8
|
+
<state>stopped</state>
|
9
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
10
|
+
<positions/>
|
11
|
+
<dataelements>
|
12
|
+
<persons>0</persons>
|
13
|
+
<card>Visa_12345</card>
|
14
|
+
<airline>FlyNiki</airline>
|
15
|
+
<hotels>["Mariott","Mariott","Mariott"]</hotels>
|
16
|
+
<from>Vienna</from>
|
17
|
+
<to>Prague</to>
|
18
|
+
<costs>1753.0</costs>
|
19
|
+
</dataelements>
|
20
|
+
<endpoints>
|
21
|
+
<bookAir>http://gruppe.wst.univie.ac.at/~mangler/services/airline.php</bookAir>
|
22
|
+
<bookHotel>http://gruppe.wst.univie.ac.at/~mangler/services/hotel.php</bookHotel>
|
23
|
+
<approve>http://gruppe.wst.univie.ac.at/~mangler/services/approval.php</approve>
|
24
|
+
</endpoints>
|
25
|
+
<dsl>call :a1, :bookAir, parameters: { :method => :post, :arguments => {:from => data.from, :to => data.to, :persons => data.persons} }, finalize: <<-END
|
26
|
+
data.airline = result.value('id')
|
27
|
+
data.costs += result.value('costs').to_f
|
28
|
+
status.update 1, 'Hotel'
|
29
|
+
END
|
30
|
+
parallel do
|
31
|
+
loop pre_test{data.persons > 0} do
|
32
|
+
parallel_branch data.persons do |p|
|
33
|
+
call :a2, :bookHotel, parameters: { :method => :post, :arguments => {:to => data.to} }, finalize: <<-END
|
34
|
+
data.hotels << result.value('id')
|
35
|
+
data.costs += result.value('costs').to_f
|
36
|
+
END
|
37
|
+
end
|
38
|
+
manipulate :a3, <<-END
|
39
|
+
data.persons -= 1
|
40
|
+
END
|
41
|
+
end
|
42
|
+
end
|
43
|
+
choose :inclusive do
|
44
|
+
alternative "data.costs > 700" do
|
45
|
+
call :a4, :approve, parameters: { :method => :post, :arguments => {:costs => data.costs} }
|
46
|
+
end
|
47
|
+
end
|
48
|
+
</dsl>
|
49
|
+
<dslx>
|
50
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
51
|
+
<call id="a1" endpoint="bookAir">
|
52
|
+
<parameters>
|
53
|
+
<method>:post</method>
|
54
|
+
<arguments>
|
55
|
+
<from>data.from</from>
|
56
|
+
<to>data.to</to>
|
57
|
+
<persons>data.persons</persons>
|
58
|
+
</arguments>
|
59
|
+
</parameters>
|
60
|
+
<finalize output="result">data.airline = result.value('id')
|
61
|
+
data.costs += result.value('costs').to_f
|
62
|
+
status.update 1, 'Hotel'</finalize>
|
63
|
+
</call>
|
64
|
+
<parallel>
|
65
|
+
<loop mode="pre_test" condition="data.persons > 0">
|
66
|
+
<parallel_branch pass="data.persons" local="p">
|
67
|
+
<call id="a2" endpoint="bookHotel">
|
68
|
+
<parameters>
|
69
|
+
<method>:post</method>
|
70
|
+
<arguments>
|
71
|
+
<to>data.to</to>
|
72
|
+
</arguments>
|
73
|
+
</parameters>
|
74
|
+
<finalize output="result">data.hotels << result.value('id')
|
75
|
+
data.costs += result.value('costs').to_f</finalize>
|
76
|
+
</call>
|
77
|
+
</parallel_branch>
|
78
|
+
<manipulate id="a3">data.persons -= 1</manipulate>
|
79
|
+
</loop>
|
80
|
+
</parallel>
|
81
|
+
<choose>
|
82
|
+
<alternative condition="data.costs > 700">
|
83
|
+
<call id="a4" endpoint="approve">
|
84
|
+
<parameters>
|
85
|
+
<method>:post</method>
|
86
|
+
<arguments>
|
87
|
+
<costs>data.costs</costs>
|
88
|
+
</arguments>
|
89
|
+
</parameters>
|
90
|
+
</call>
|
91
|
+
</alternative>
|
92
|
+
</choose>
|
93
|
+
</description>
|
94
|
+
</dslx>
|
95
|
+
<status>
|
96
|
+
<id>0</id>
|
97
|
+
<message>undefined</message>
|
98
|
+
</status>
|
99
|
+
<description>
|
100
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
101
|
+
<call id="a1" endpoint="bookAir">
|
102
|
+
<parameters>
|
103
|
+
<method>:post</method>
|
104
|
+
<arguments>
|
105
|
+
<from>data.from</from>
|
106
|
+
<to>data.to</to>
|
107
|
+
<persons>data.persons</persons>
|
108
|
+
</arguments>
|
109
|
+
</parameters>
|
110
|
+
<finalize output="result">data.airline = result.value('id')
|
111
|
+
data.costs += result.value('costs').to_f
|
112
|
+
status.update 1, 'Hotel'</finalize>
|
113
|
+
</call>
|
114
|
+
<parallel>
|
115
|
+
<loop mode="pre_test" condition="data.persons > 0">
|
116
|
+
<parallel_branch pass="data.persons" local="p">
|
117
|
+
<call id="a2" endpoint="bookHotel">
|
118
|
+
<parameters>
|
119
|
+
<method>:post</method>
|
120
|
+
<arguments>
|
121
|
+
<to>data.to</to>
|
122
|
+
</arguments>
|
123
|
+
</parameters>
|
124
|
+
<finalize output="result">data.hotels << result.value('id')
|
125
|
+
data.costs += result.value('costs').to_f</finalize>
|
126
|
+
</call>
|
127
|
+
</parallel_branch>
|
128
|
+
<manipulate id="a3">data.persons -= 1</manipulate>
|
129
|
+
</loop>
|
130
|
+
</parallel>
|
131
|
+
<choose>
|
132
|
+
<alternative condition="data.costs > 700">
|
133
|
+
<call id="a4" endpoint="approve">
|
134
|
+
<parameters>
|
135
|
+
<method>:post</method>
|
136
|
+
<arguments>
|
137
|
+
<costs>data.costs</costs>
|
138
|
+
</arguments>
|
139
|
+
</parameters>
|
140
|
+
</call>
|
141
|
+
</alternative>
|
142
|
+
</choose>
|
143
|
+
</description>
|
144
|
+
</description>
|
145
|
+
<transformation>
|
146
|
+
<description type="copy"/>
|
147
|
+
<dataelements type="rest"/>
|
148
|
+
<endpoints type="rest"/>
|
149
|
+
</transformation>
|
150
|
+
</properties>
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<attributes>
|
3
|
+
<uuid>506755e6-be39-4800-82c7-19b535afca46</uuid>
|
4
|
+
<info>Linear</info>
|
5
|
+
<modeltype>CPEE</modeltype>
|
6
|
+
<theme>default</theme>
|
7
|
+
</attributes>
|
8
|
+
<state>stopped</state>
|
9
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
10
|
+
<positions>
|
11
|
+
<a1>after</a1>
|
12
|
+
</positions>
|
13
|
+
<dataelements>
|
14
|
+
<x/>
|
15
|
+
</dataelements>
|
16
|
+
<endpoints>
|
17
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
18
|
+
</endpoints>
|
19
|
+
<dsl>call :a1, :timeout, parameters: { :method => :post, :arguments => {:timeout => 2} }, finalize: <<-END
|
20
|
+
data.x += "a1,"
|
21
|
+
END
|
22
|
+
call :a2, :timeout, parameters: { :method => :post, :arguments => {:timeout => 4} }, finalize: <<-END
|
23
|
+
data.x += "a2,"
|
24
|
+
END
|
25
|
+
call :a3, :timeout, parameters: { :method => :post, :arguments => {:timeout => 4} }, finalize: <<-END
|
26
|
+
data.x += "a3,"
|
27
|
+
END
|
28
|
+
</dsl>
|
29
|
+
<dslx>
|
30
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
31
|
+
<!--{{{-->
|
32
|
+
<call id="a1" endpoint="timeout">
|
33
|
+
<parameters>
|
34
|
+
<!--{{{-->
|
35
|
+
<method>:post</method>
|
36
|
+
<arguments>
|
37
|
+
<timeout>2</timeout>
|
38
|
+
</arguments>
|
39
|
+
</parameters>
|
40
|
+
<!--}}}-->
|
41
|
+
<finalize output="result">data.x += "a1,"</finalize>
|
42
|
+
</call>
|
43
|
+
<call id="a2" endpoint="timeout">
|
44
|
+
<parameters>
|
45
|
+
<!--{{{-->
|
46
|
+
<method>:post</method>
|
47
|
+
<arguments>
|
48
|
+
<timeout>4</timeout>
|
49
|
+
</arguments>
|
50
|
+
</parameters>
|
51
|
+
<!--}}}-->
|
52
|
+
<finalize output="result">data.x += "a2,"</finalize>
|
53
|
+
</call>
|
54
|
+
<call id="a3" endpoint="timeout">
|
55
|
+
<parameters>
|
56
|
+
<!--{{{-->
|
57
|
+
<method>:post</method>
|
58
|
+
<arguments>
|
59
|
+
<timeout>4</timeout>
|
60
|
+
</arguments>
|
61
|
+
</parameters>
|
62
|
+
<!--}}}-->
|
63
|
+
<finalize output="result">data.x += "a3,"</finalize>
|
64
|
+
</call>
|
65
|
+
</description>
|
66
|
+
</dslx>
|
67
|
+
<status>
|
68
|
+
<id>0</id>
|
69
|
+
<message>undefined</message>
|
70
|
+
</status>
|
71
|
+
<description>
|
72
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
73
|
+
<!--{{{-->
|
74
|
+
<call id="a1" endpoint="timeout">
|
75
|
+
<parameters>
|
76
|
+
<!--{{{-->
|
77
|
+
<method>:post</method>
|
78
|
+
<arguments>
|
79
|
+
<timeout>2</timeout>
|
80
|
+
</arguments>
|
81
|
+
</parameters>
|
82
|
+
<!--}}}-->
|
83
|
+
<finalize output="result">data.x += "a1,"</finalize>
|
84
|
+
</call>
|
85
|
+
<call id="a2" endpoint="timeout">
|
86
|
+
<parameters>
|
87
|
+
<!--{{{-->
|
88
|
+
<method>:post</method>
|
89
|
+
<arguments>
|
90
|
+
<timeout>4</timeout>
|
91
|
+
</arguments>
|
92
|
+
</parameters>
|
93
|
+
<!--}}}-->
|
94
|
+
<finalize output="result">data.x += "a2,"</finalize>
|
95
|
+
</call>
|
96
|
+
<call id="a3" endpoint="timeout">
|
97
|
+
<parameters>
|
98
|
+
<!--{{{-->
|
99
|
+
<method>:post</method>
|
100
|
+
<arguments>
|
101
|
+
<timeout>4</timeout>
|
102
|
+
</arguments>
|
103
|
+
</parameters>
|
104
|
+
<!--}}}-->
|
105
|
+
<finalize output="result">data.x += "a3,"</finalize>
|
106
|
+
</call>
|
107
|
+
</description>
|
108
|
+
</description>
|
109
|
+
<transformation>
|
110
|
+
<description type="copy"/>
|
111
|
+
<dataelements type="rest"/>
|
112
|
+
<endpoints type="rest"/>
|
113
|
+
</transformation>
|
114
|
+
</properties>
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<attributes>
|
3
|
+
<uuid>6ab294be-a096-4e9d-95f2-a80ebb79dd1d</uuid>
|
4
|
+
<info>Linear</info>
|
5
|
+
<modeltype>CPEE</modeltype>
|
6
|
+
<theme>default</theme>
|
7
|
+
</attributes>
|
8
|
+
<state>stopped</state>
|
9
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
10
|
+
<positions>
|
11
|
+
<a1>after</a1>
|
12
|
+
</positions>
|
13
|
+
<dataelements>
|
14
|
+
<x/>
|
15
|
+
</dataelements>
|
16
|
+
<endpoints>
|
17
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
18
|
+
</endpoints>
|
19
|
+
<dsl>call :a1, :timeout, parameters: { :method => :post, :arguments => {:timeout => 2} }, finalize: <<-END
|
20
|
+
data.x += "a1,"
|
21
|
+
END
|
22
|
+
call :a2, :timeout, parameters: { :method => :post, :arguments => {:timeout => 4} }, finalize: <<-END
|
23
|
+
data.x += "a2,"
|
24
|
+
END
|
25
|
+
call :a3, :timeout, parameters: { :method => :post, :arguments => {:timeout => 4} }, finalize: <<-END
|
26
|
+
data.x += "a3,"
|
27
|
+
END
|
28
|
+
</dsl>
|
29
|
+
<dslx>
|
30
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
31
|
+
<!--{{{-->
|
32
|
+
<call id="a1" endpoint="timeout">
|
33
|
+
<parameters>
|
34
|
+
<!--{{{-->
|
35
|
+
<method>:post</method>
|
36
|
+
<arguments>
|
37
|
+
<timeout>2</timeout>
|
38
|
+
</arguments>
|
39
|
+
</parameters>
|
40
|
+
<!--}}}-->
|
41
|
+
<finalize output="result">data.x += "a1,"</finalize>
|
42
|
+
</call>
|
43
|
+
<call id="a2" endpoint="timeout">
|
44
|
+
<parameters>
|
45
|
+
<!--{{{-->
|
46
|
+
<method>:post</method>
|
47
|
+
<arguments>
|
48
|
+
<timeout>4</timeout>
|
49
|
+
</arguments>
|
50
|
+
</parameters>
|
51
|
+
<!--}}}-->
|
52
|
+
<finalize output="result">data.x += "a2,"</finalize>
|
53
|
+
</call>
|
54
|
+
<call id="a3" endpoint="timeout">
|
55
|
+
<parameters>
|
56
|
+
<!--{{{-->
|
57
|
+
<method>:post</method>
|
58
|
+
<arguments>
|
59
|
+
<timeout>4</timeout>
|
60
|
+
</arguments>
|
61
|
+
</parameters>
|
62
|
+
<!--}}}-->
|
63
|
+
<finalize output="result">data.x += "a3,"</finalize>
|
64
|
+
</call>
|
65
|
+
</description>
|
66
|
+
</dslx>
|
67
|
+
<status>
|
68
|
+
<id>0</id>
|
69
|
+
<message>undefined</message>
|
70
|
+
</status>
|
71
|
+
<description>
|
72
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
73
|
+
<!--{{{-->
|
74
|
+
<call id="a1" endpoint="timeout">
|
75
|
+
<parameters>
|
76
|
+
<!--{{{-->
|
77
|
+
<method>:post</method>
|
78
|
+
<arguments>
|
79
|
+
<timeout>2</timeout>
|
80
|
+
</arguments>
|
81
|
+
</parameters>
|
82
|
+
<!--}}}-->
|
83
|
+
<finalize output="result">data.x += "a1,"</finalize>
|
84
|
+
</call>
|
85
|
+
<call id="a2" endpoint="timeout">
|
86
|
+
<parameters>
|
87
|
+
<!--{{{-->
|
88
|
+
<method>:post</method>
|
89
|
+
<arguments>
|
90
|
+
<timeout>4</timeout>
|
91
|
+
</arguments>
|
92
|
+
</parameters>
|
93
|
+
<!--}}}-->
|
94
|
+
<finalize output="result">data.x += "a2,"</finalize>
|
95
|
+
</call>
|
96
|
+
<call id="a3" endpoint="timeout">
|
97
|
+
<parameters>
|
98
|
+
<!--{{{-->
|
99
|
+
<method>:post</method>
|
100
|
+
<arguments>
|
101
|
+
<timeout>4</timeout>
|
102
|
+
</arguments>
|
103
|
+
</parameters>
|
104
|
+
<!--}}}-->
|
105
|
+
<finalize output="result">data.x += "a3,"</finalize>
|
106
|
+
</call>
|
107
|
+
</description>
|
108
|
+
</description>
|
109
|
+
<transformation>
|
110
|
+
<description type="copy"/>
|
111
|
+
<dataelements type="rest"/>
|
112
|
+
<endpoints type="rest"/>
|
113
|
+
</transformation>
|
114
|
+
</properties>
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<attributes>
|
3
|
+
<uuid>f0e79447-8f06-4c32-ad04-ee8407e57358</uuid>
|
4
|
+
<info>Linear</info>
|
5
|
+
<modeltype>CPEE</modeltype>
|
6
|
+
<theme>default</theme>
|
7
|
+
</attributes>
|
8
|
+
<state>stopped</state>
|
9
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
10
|
+
<positions>
|
11
|
+
<a1>after</a1>
|
12
|
+
</positions>
|
13
|
+
<dataelements>
|
14
|
+
<x/>
|
15
|
+
</dataelements>
|
16
|
+
<endpoints>
|
17
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
18
|
+
</endpoints>
|
19
|
+
<dsl>call :a1, :timeout, parameters: { :method => :post, :arguments => {:timeout => 2} }, finalize: <<-END
|
20
|
+
data.x += "a1,"
|
21
|
+
END
|
22
|
+
call :a2, :timeout, parameters: { :method => :post, :arguments => {:timeout => 4} }, finalize: <<-END
|
23
|
+
data.x += "a2,"
|
24
|
+
END
|
25
|
+
call :a3, :timeout, parameters: { :method => :post, :arguments => {:timeout => 4} }, finalize: <<-END
|
26
|
+
data.x += "a3,"
|
27
|
+
END
|
28
|
+
</dsl>
|
29
|
+
<dslx>
|
30
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
31
|
+
<!--{{{-->
|
32
|
+
<call id="a1" endpoint="timeout">
|
33
|
+
<parameters>
|
34
|
+
<!--{{{-->
|
35
|
+
<method>:post</method>
|
36
|
+
<arguments>
|
37
|
+
<timeout>2</timeout>
|
38
|
+
</arguments>
|
39
|
+
</parameters>
|
40
|
+
<!--}}}-->
|
41
|
+
<finalize output="result">data.x += "a1,"</finalize>
|
42
|
+
</call>
|
43
|
+
<call id="a2" endpoint="timeout">
|
44
|
+
<parameters>
|
45
|
+
<!--{{{-->
|
46
|
+
<method>:post</method>
|
47
|
+
<arguments>
|
48
|
+
<timeout>4</timeout>
|
49
|
+
</arguments>
|
50
|
+
</parameters>
|
51
|
+
<!--}}}-->
|
52
|
+
<finalize output="result">data.x += "a2,"</finalize>
|
53
|
+
</call>
|
54
|
+
<call id="a3" endpoint="timeout">
|
55
|
+
<parameters>
|
56
|
+
<!--{{{-->
|
57
|
+
<method>:post</method>
|
58
|
+
<arguments>
|
59
|
+
<timeout>4</timeout>
|
60
|
+
</arguments>
|
61
|
+
</parameters>
|
62
|
+
<!--}}}-->
|
63
|
+
<finalize output="result">data.x += "a3,"</finalize>
|
64
|
+
</call>
|
65
|
+
</description>
|
66
|
+
</dslx>
|
67
|
+
<status>
|
68
|
+
<id>0</id>
|
69
|
+
<message>undefined</message>
|
70
|
+
</status>
|
71
|
+
<description>
|
72
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
73
|
+
<!--{{{-->
|
74
|
+
<call id="a1" endpoint="timeout">
|
75
|
+
<parameters>
|
76
|
+
<!--{{{-->
|
77
|
+
<method>:post</method>
|
78
|
+
<arguments>
|
79
|
+
<timeout>2</timeout>
|
80
|
+
</arguments>
|
81
|
+
</parameters>
|
82
|
+
<!--}}}-->
|
83
|
+
<finalize output="result">data.x += "a1,"</finalize>
|
84
|
+
</call>
|
85
|
+
<call id="a2" endpoint="timeout">
|
86
|
+
<parameters>
|
87
|
+
<!--{{{-->
|
88
|
+
<method>:post</method>
|
89
|
+
<arguments>
|
90
|
+
<timeout>4</timeout>
|
91
|
+
</arguments>
|
92
|
+
</parameters>
|
93
|
+
<!--}}}-->
|
94
|
+
<finalize output="result">data.x += "a2,"</finalize>
|
95
|
+
</call>
|
96
|
+
<call id="a3" endpoint="timeout">
|
97
|
+
<parameters>
|
98
|
+
<!--{{{-->
|
99
|
+
<method>:post</method>
|
100
|
+
<arguments>
|
101
|
+
<timeout>4</timeout>
|
102
|
+
</arguments>
|
103
|
+
</parameters>
|
104
|
+
<!--}}}-->
|
105
|
+
<finalize output="result">data.x += "a3,"</finalize>
|
106
|
+
</call>
|
107
|
+
</description>
|
108
|
+
</description>
|
109
|
+
<transformation>
|
110
|
+
<description type="copy"/>
|
111
|
+
<dataelements type="rest"/>
|
112
|
+
<endpoints type="rest"/>
|
113
|
+
</transformation>
|
114
|
+
</properties>
|