Project

General

Profile

1
<?xml version="1.0"?>
2
<process-definition name="claimed-migration"
3
	xmlns="http://sarasvati.googlecode.com/ProcessDefinition">
4
	
5
	<node name="registerMissingSets" type="RegisterMissingSets" isStart="true">
6
		<arc to="performSQL" />
7
		<arc name="failed" to="failure" />
8
	</node>	
9
	
10
	<node name="performSQL" type="PerformClaimedSQL">
11
		<arc to="storeClaimed" />
12
		<arc name="failed" to="failure" />
13
	</node>	
14
	
15
	<node name="storeClaimed" type="StoreClaimedInfoPackages">
16
		<arc to="success"/>
17
		<arc name="failed" to="failure" />
18
	</node>
19

    
20
	<node name="success" type="Success" />
21
	<node name="failure" />
22

    
23
</process-definition>
(5-5/6)