aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/clds/camel/routes/flexible-flow.xml
blob: e84c68614f037101a269119e9fdd4963ddad6919 (plain)
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
<routes xmlns="http://camel.apache.org/schema/spring">
		<route id="submit">
				<from uri="direct:processSubmit" />
				<choice>
						<when>
								<simple> ${exchangeProperty.actionCd} == 'SUBMIT' || ${exchangeProperty.actionCd} == 'RESUBMIT'</simple>
								<to uri="bean:org.onap.clamp.clds.client.TcaPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.HolmesPolicyDelegate" />
								<delay>
										<constant>30000</constant>
								</delay>
								<to uri="bean:org.onap.clamp.clds.client.OperationalPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.GuardPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.CldsEventDelegate" />
						</when>
						<when>
								<simple> ${exchangeProperty.actionCd} == 'DELETE'</simple>
								<to uri="bean:org.onap.clamp.clds.client.TcaPolicyDeleteDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.HolmesPolicyDeleteDelegate" />
								<delay>
										<constant>30000</constant>
								</delay>
								<to
										uri="bean:org.onap.clamp.clds.client.OperationalPolicyDeleteDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.GuardPolicyDeleteDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.ModelDeleteDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.CldsEventDelegate" />
						</when>
						<when>
								<simple> ${exchangeProperty.actionCd} == 'UPDATE'</simple>
								<to uri="bean:org.onap.clamp.clds.client.TcaPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.HolmesPolicyDelegate" />
								<delay>
										<constant>30000</constant>
								</delay>
								<to uri="bean:org.onap.clamp.clds.client.OperationalPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.GuardPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.CldsEventDelegate" />
						</when>
						<when>
								<simple> ${exchangeProperty.actionCd} == 'STOP'</simple>
								<to
										uri="bean:org.onap.clamp.clds.client.OperationalPolicyDeleteDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.GuardPolicyDeleteDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.CldsEventDelegate" />
						</when>
						<when>
								<simple> ${exchangeProperty.actionCd} == 'RESTART'</simple>
								<to uri="bean:org.onap.clamp.clds.client.GuardPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.OperationalPolicyDelegate" />
								<to uri="bean:org.onap.clamp.clds.client.CldsEventDelegate" />
						</when>
				</choice>
		</route>

</routes>